mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-13 21:26:53 +03:00
833a79ff3c
* Remove pycharm service from Docker setup * Update generated project docs
61 lines
1.4 KiB
YAML
61 lines
1.4 KiB
YAML
version: '2'
|
|
|
|
volumes:
|
|
postgres_data_dev: {}
|
|
postgres_backup_dev: {}
|
|
|
|
services:
|
|
django: &django
|
|
build:
|
|
context: .
|
|
dockerfile: ./compose/django/Dockerfile-local
|
|
depends_on:
|
|
- postgres{% if cookiecutter.use_mailhog == 'y' %}
|
|
- mailhog{% endif %}
|
|
volumes:
|
|
- .:/app
|
|
environment:
|
|
- POSTGRES_USER={{cookiecutter.project_slug}}
|
|
- USE_DOCKER=yes
|
|
ports:
|
|
- "8000:8000"
|
|
command: /start-dev.sh
|
|
|
|
postgres:
|
|
build: ./compose/postgres
|
|
volumes:
|
|
- postgres_data_dev:/var/lib/postgresql/data
|
|
- postgres_backup_dev:/backups
|
|
environment:
|
|
- POSTGRES_USER={{cookiecutter.project_slug}}
|
|
{% if cookiecutter.use_mailhog == 'y' %}
|
|
mailhog:
|
|
image: mailhog/mailhog:v1.0.0
|
|
ports:
|
|
- "8025:8025"
|
|
{% endif %}
|
|
{% if cookiecutter.use_celery == 'y' %}
|
|
redis:
|
|
image: redis:3.0
|
|
|
|
celeryworker:
|
|
# https://github.com/docker/compose/issues/3220
|
|
<<: *django
|
|
depends_on:
|
|
- redis
|
|
- postgres{% if cookiecutter.use_mailhog == 'y' %}
|
|
- mailhog{% endif %}
|
|
ports: []
|
|
command: /start-celeryworker-dev.sh
|
|
|
|
celerybeat:
|
|
# https://github.com/docker/compose/issues/3220
|
|
<<: *django
|
|
depends_on:
|
|
- redis
|
|
- postgres{% if cookiecutter.use_mailhog == 'y' %}
|
|
- mailhog{% endif %}
|
|
ports: []
|
|
command: /start-celerybeat-dev.sh
|
|
{% endif %}
|