-
Notifications
You must be signed in to change notification settings - Fork 508
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
Production setup runs into endless loop #57
Comments
I could reproduce a similar problem on a different setup (Ubuntu 16.04, relatively fresh installation). Differently only one image is stuck in an endless loop:
|
Actually my docker-compose.yml already sais $ cat docker-compose.yml
version: '2'
services:
api:
image: judge0/api
env_file: judge0-api.conf
ports:
- "3000:3000"
privileged: true
restart: always
worker:
image: judge0/api
env_file: judge0-api.conf
command: rails resque:work
privileged: true
restart: always
db:
image: postgres:9.6.5
env_file: judge0-api.conf
volumes:
- ./srv/postgres-data:/var/lib/postgresql/data/
restart: always
redis:
image: redis:4.0.9
command: redis-server --appendonly yes
volumes:
- ./srv/redis-data:/data
restart: always |
Can you please do the following:
And then remove And after that try again with the Quick Production Setup. Please let me know if I can help you more! |
I followed the instructions under 'Quick Development Setup'
But all containers except redis seam to be stuck in an endless restart loop:
https://asciinema.org/a/9SXQkcstckOkMumkdxDltgpfc
Setup: Manjaro Linux (behaves nearly the same as arch linux), my usual working machine.
Did I do something wrong or is it a bug?
The text was updated successfully, but these errors were encountered: