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

75 lines
1.7 KiB
YAML
Raw Normal View History

version: '2'
2016-04-08 09:31:02 +03:00
volumes:
postgres_data: {}
postgres_backup: {}
2017-08-11 12:16:15 +03:00
caddy: {}
2016-04-08 09:31:02 +03:00
services:
django:{% if cookiecutter.use_celery == 'y' %} &django{% endif %}
build:
context: .
dockerfile: ./compose/production/django/Dockerfile
image: {{ cookiecutter.project_slug }}_production_django
2016-03-08 12:12:55 +03:00
depends_on:
- postgres
- redis
env_file:
- ./.envs/.production/.django
- ./.envs/.production/.postgres
command: /gunicorn.sh
2015-07-16 18:43:02 +03:00
postgres:
build:
context: .
dockerfile: ./compose/production/postgres/Dockerfile
image: {{ cookiecutter.project_slug }}_production_postgres
volumes:
- postgres_data:/var/lib/postgresql/data
- postgres_backup:/backups
env_file:
- ./.envs/.production/.postgres
2017-08-11 12:16:15 +03:00
caddy:
build:
context: .
dockerfile: ./compose/production/caddy/Dockerfile
image: {{ cookiecutter.project_slug }}_production_caddy
2016-03-08 12:12:55 +03:00
depends_on:
- django
volumes:
2017-08-11 12:16:15 +03:00
- caddy:/root/.caddy
env_file:
- ./.envs/.production/.caddy
ports:
- "0.0.0.0:80:80"
- "0.0.0.0:443:443"
2015-07-16 18:43:02 +03:00
redis:
image: redis:3.0
{%- if cookiecutter.use_celery == 'y' %}
celeryworker:
<<: *django
image: {{ cookiecutter.project_slug }}_production_celeryworker
2016-03-08 12:12:55 +03:00
depends_on:
- postgres
- redis
env_file:
- ./.envs/.production/.django
- ./.envs/.production/.postgres
command: /start-celeryworker.sh
2015-07-16 18:43:02 +03:00
celerybeat:
<<: *django
image: {{ cookiecutter.project_slug }}_production_celerybeat
2016-03-08 12:12:55 +03:00
depends_on:
- postgres
- redis
env_file:
- ./.envs/.production/.django
- ./.envs/.production/.postgres
command: /start-celerybeat.sh
{%- endif %}