-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can not login with [email protected] and foobar #271
Comments
What is version of Black Candy that you deployed? And also please post content of your |
I just use the following version: '3.4'
services:
app: &app_base
container_name: 'blackcandy_app'
image: blackcandy/blackcandy
volumes:
- ./log:/app/log
- /media_data:/media_data
- production_uploads_data:/app/public/uploads
environment:
DB_HOST: postgres
DB_USER: postgres
REDIS_CACHE_URL: redis://redis:6379/1
REDIS_SIDEKIQ_URL: redis://redis:6379/2
MEDIA_PATH: /media_data
depends_on:
- postgres
- redis
postgres:
container_name: 'blackcandy_postgres'
image: postgres:11.1-alpine
volumes:
- production_db_data:/var/lib/postgresql/data
redis:
container_name: 'blackcandy_redis'
image: redis:4.0-alpine
volumes:
- production_redis_data:/data
worker:
container_name: 'blackcandy_worker'
<<: *app_base
command: bundle exec sidekiq
web:
container_name: 'blackcandy_web'
<<: *app_base
depends_on:
- app
- worker
ports:
- 8000:80
command: nginx -g 'pid /tmp/nginx.pid; daemon off;'
volumes:
production_db_data:
production_redis_data:
production_uploads_data: |
I have tested on the latest stable version of black candy. I didn't encounter the issue. Do you have any error log? Or you can start all service not in detached mode like this |
I deploy black candy with docker-compose up, but can not login with [email protected] and foobar. I don't know where the problem is.
The text was updated successfully, but these errors were encountered: