docker-compose.yml
· 173 B · YAML
Raw
build:
context: .
dockerfile: ./Dockerfile
command: >
sh -c "
python manage.py migrate &&
gunicorn sago.wsgi:application --bind 0.0.0.0:8000 "
| 1 | build: |
| 2 | context: . |
| 3 | dockerfile: ./Dockerfile |
| 4 | command: > |
| 5 | sh -c " |
| 6 | python manage.py migrate && |
| 7 | gunicorn sago.wsgi:application --bind 0.0.0.0:8000 " |