cookiecutter-django/{{cookiecutter.repo_name}}/dev.yml

18 lines
489 B
YAML
Raw Normal View History

2015-07-16 18:43:02 +03:00
postgres:
2016-01-06 11:58:18 +03:00
image: postgres:9.5
2015-07-16 18:43:02 +03:00
volumes:
# If you are using boot2docker, postgres data has to live in the VM for now until #581 is fixed
# for more info see here: https://github.com/boot2docker/boot2docker/issues/581
- /data/dev/{{cookiecutter.repo_name}}/postgres:/var/lib/postgresql/data
2015-07-16 18:43:02 +03:00
django:
2015-10-04 13:13:42 +03:00
dockerfile: Dockerfile-dev
2015-07-16 18:43:02 +03:00
build: .
command: python /app/manage.py runserver_plus 0.0.0.0:8000
volumes:
- .:/app
ports:
- "8000:8000"
links:
2015-10-14 15:22:22 +03:00
- postgres