mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-13 21:26:53 +03:00
e889316b11
* Rename dev.yml to local.yml Closes #1226. * Rename docker-compose.yml to production.yml
51 lines
1.0 KiB
YAML
51 lines
1.0 KiB
YAML
version: '2'
|
|
|
|
volumes:
|
|
postgres_data_dev: {}
|
|
postgres_backup_dev: {}
|
|
|
|
services:
|
|
postgres:
|
|
build: ./compose/postgres
|
|
volumes:
|
|
- postgres_data_dev:/var/lib/postgresql/data
|
|
- postgres_backup_dev:/backups
|
|
environment:
|
|
- POSTGRES_USER={{cookiecutter.project_slug}}
|
|
|
|
django:
|
|
build:
|
|
context: .
|
|
dockerfile: ./compose/django/Dockerfile-dev
|
|
command: /start-dev.sh
|
|
depends_on:
|
|
- postgres{% if cookiecutter.use_mailhog == 'y' %}
|
|
- mailhog{% endif %}
|
|
environment:
|
|
- POSTGRES_USER={{cookiecutter.project_slug}}
|
|
- USE_DOCKER=yes
|
|
volumes:
|
|
- .:/app
|
|
ports:
|
|
- "8000:8000"
|
|
|
|
{% if cookiecutter.use_pycharm == 'y' %}
|
|
pycharm:
|
|
build:
|
|
context: .
|
|
dockerfile: ./compose/django/Dockerfile-dev
|
|
depends_on:
|
|
- postgres
|
|
environment:
|
|
- POSTGRES_USER={{cookiecutter.project_slug}}
|
|
volumes:
|
|
- .:/app
|
|
{% endif %}
|
|
|
|
{% if cookiecutter.use_mailhog == 'y' %}
|
|
mailhog:
|
|
image: mailhog/mailhog:v1.0.0
|
|
ports:
|
|
- "8025:8025"
|
|
{% endif %}
|