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

68 lines
1.4 KiB
YAML
Raw Normal View History

version: '2'
2016-04-08 09:31:02 +03:00
volumes:
postgres_data_dev: {}
postgres_backup_dev: {}
services:
postgres:
2016-03-08 12:41:58 +03:00
build: ./compose/postgres
volumes:
2016-04-08 09:31:02 +03:00
- postgres_data_dev:/var/lib/postgresql/data
- postgres_backup_dev:/backups
environment:
- POSTGRES_USER={{cookiecutter.project_slug}}
2015-07-16 18:43:02 +03:00
django:
build:
context: .
dockerfile: ./compose/django/Dockerfile-dev
command: /start-dev.sh
depends_on:
- postgres{% if cookiecutter.use_mailhog == 'y' %}
- mailhog{% endif %}
2017-04-21 14:06:23 +03:00
- node
environment:
- POSTGRES_USER={{cookiecutter.project_slug}}
- USE_DOCKER=yes
volumes:
- .:/app
ports:
- "8000:8000"
2016-04-11 01:33:14 +03:00
2016-03-27 21:47:43 +03:00
{% if cookiecutter.use_pycharm == 'y' %}
pycharm:
build:
context: .
dockerfile: ./compose/django/Dockerfile-dev
depends_on:
- postgres
environment:
- POSTGRES_USER={{cookiecutter.project_slug}}
2016-03-27 21:47:43 +03:00
volumes:
- .:/app
{% endif %}
2016-04-11 00:18:38 +03:00
{% if cookiecutter.use_mailhog == 'y' %}
mailhog:
image: mailhog/mailhog
ports:
- "8025:8025"
{% endif %}
2017-04-21 14:06:23 +03:00
node:
build:
context: .
dockerfile: ./compose/node/Dockerfile-dev
volumes:
- .:/app
# http://jdlm.info/articles/2016/03/06/lessons-building-node-app-docker.html
- /app/node_modules
command: "gulp"
ports:
# BrowserSync port.
- "3000:3000"
# BrowserSync UI port.
- "3001:3001"