Created
July 8, 2018 14:50
-
-
Save sprytnyk/b8aa9684ad18bd6b87797246268def02 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
backend: | |
build: . | |
command: > | |
gunicorn -b 0.0.0.0:5005 | |
--worker-class eventlet | |
--access-logfile - | |
--reload | |
--timeout 600 | |
"manage:app" | |
volumes: | |
- .:/project | |
ports: | |
- 5005:5005 | |
- 4444:4444 | |
stdin_open: true | |
tty: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment