mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-22 09:36:52 +03:00
035dc4d7ab
* Introduce development-time Celery services Closes #1225. * Re-order django and postgres services in production.yml * Switch local service extension tactics * Fix celery services inheriting ports from the django's
73 lines
1.6 KiB
YAML
73 lines
1.6 KiB
YAML
version: '2'
|
|
|
|
volumes:
|
|
postgres_data_dev: {}
|
|
postgres_backup_dev: {}
|
|
|
|
services:
|
|
django: &django
|
|
build:
|
|
context: .
|
|
dockerfile: ./compose/django/Dockerfile-dev
|
|
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_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 %}
|
|
{% 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 %}
|