cookiecutter-django/{{cookiecutter.repo_name}}/dev.yml
2016-03-08 10:15:05 +01:00

25 lines
660 B
YAML

version: '2'
services:
postgres:
image: postgres:9.5
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
environment:
- POSTGRES_USER={{cookiecutter.repo_name}}
django:
build:
context: .
dockerfile: Dockerfile-dev
command: python /app/manage.py runserver_plus 0.0.0.0:8000
depends_on:
- postgres
volumes:
- .:/app
ports:
- "8000:8000"
links:
- postgres