2016-03-03 04:16:25 +00:00
|
|
|
version: '2'
|
2016-04-08 06:31:02 +00:00
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
postgres_data_dev: {}
|
|
|
|
|
postgres_backup_dev: {}
|
|
|
|
|
|
2016-03-03 04:16:25 +00:00
|
|
|
services:
|
|
|
|
|
postgres:
|
2016-03-08 09:41:58 +00:00
|
|
|
build: ./compose/postgres
|
2016-03-03 04:16:25 +00:00
|
|
|
volumes:
|
2016-04-08 06:31:02 +00:00
|
|
|
- postgres_data_dev:/var/lib/postgresql/data
|
|
|
|
|
- postgres_backup_dev:/backups
|
2016-03-08 09:15:05 +00:00
|
|
|
environment:
|
2016-04-20 17:00:35 +00:00
|
|
|
- POSTGRES_USER={{cookiecutter.project_slug}}
|
2015-07-16 15:43:02 +00:00
|
|
|
|
2016-03-03 04:16:25 +00:00
|
|
|
django:
|
|
|
|
|
build:
|
|
|
|
|
context: .
|
2016-03-23 19:45:09 +00:00
|
|
|
dockerfile: ./compose/django/Dockerfile-dev
|
2016-08-16 19:20:41 +00:00
|
|
|
command: /start-dev.sh
|
2016-03-03 04:16:25 +00:00
|
|
|
depends_on:
|
|
|
|
|
- postgres
|
2016-03-16 16:06:48 +00:00
|
|
|
environment:
|
2016-04-20 17:00:35 +00:00
|
|
|
- POSTGRES_USER={{cookiecutter.project_slug}}
|
2016-06-18 02:09:08 +00:00
|
|
|
- USE_DOCKER=yes
|
2016-03-03 04:16:25 +00:00
|
|
|
volumes:
|
|
|
|
|
- .:/app
|
|
|
|
|
ports:
|
|
|
|
|
- "8000:8000"
|
|
|
|
|
links:
|
|
|
|
|
- postgres
|
2016-04-10 22:33:14 +00:00
|
|
|
{% if cookiecutter.use_mailhog == 'y' %}
|
|
|
|
|
- mailhog
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
2016-03-27 18:47:43 +00:00
|
|
|
{% if cookiecutter.use_pycharm == 'y' %}
|
|
|
|
|
pycharm:
|
|
|
|
|
build:
|
|
|
|
|
context: .
|
|
|
|
|
dockerfile: ./compose/django/Dockerfile-dev
|
|
|
|
|
depends_on:
|
|
|
|
|
- postgres
|
|
|
|
|
environment:
|
2016-04-20 17:00:35 +00:00
|
|
|
- POSTGRES_USER={{cookiecutter.project_slug}}
|
2016-03-27 18:47:43 +00:00
|
|
|
volumes:
|
|
|
|
|
- .:/app
|
|
|
|
|
links:
|
|
|
|
|
- postgres
|
|
|
|
|
{% endif %}
|
2016-04-10 21:18:38 +00:00
|
|
|
|
|
|
|
|
{% if cookiecutter.use_mailhog == 'y' %}
|
|
|
|
|
mailhog:
|
|
|
|
|
image: mailhog/mailhog
|
|
|
|
|
ports:
|
|
|
|
|
- "8025:8025"
|
|
|
|
|
{% endif %}
|