Created
April 27, 2020 08:22
-
-
Save f213/be15dc3d3607b55f56147cd154ed27c1 to your computer and use it in GitHub Desktop.
This file contains 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
# This is a docker-compose stub for django template at https://github.com/f213/django | |
version: '2' | |
services: | |
postgres: | |
image: postgres:12-alpine | |
ports: | |
- 5432:5432 | |
redis: | |
image: redis:5-alpine | |
ports: | |
- 6379:6379 | |
django: | |
image: your/image | |
volumes: &volumes | |
- ./src:/srv | |
command: ["dockerize", "-wait", "tcp://postgres:5432", "-timeout", "300s", "./manage.py", "runserver", "0.0.0.0:8000"] | |
ports: | |
- 8000:8000 | |
environment: &environment | |
- DATABASE_URL=postgresql://postgres@postgres/postgres | |
- REDIS=redis://redis:6379/7 | |
links: | |
- postgres | |
- redis |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment