2018-06-27 19:45:36 +03:00
|
|
|
version: '3'
|
2016-04-08 09:31:02 +03:00
|
|
|
|
|
|
|
volumes:
|
2022-01-17 11:53:56 +03:00
|
|
|
{{ cookiecutter.project_slug }}_local_postgres_data: {}
|
|
|
|
{{ cookiecutter.project_slug }}_local_postgres_data_backups: {}
|
2016-04-08 09:31:02 +03:00
|
|
|
|
2016-03-03 07:16:25 +03:00
|
|
|
services:
|
2017-09-05 14:39:20 +03:00
|
|
|
django:{% if cookiecutter.use_celery == 'y' %} &django{% endif %}
|
2016-03-03 07:16:25 +03:00
|
|
|
build:
|
|
|
|
context: .
|
2017-09-05 14:39:20 +03:00
|
|
|
dockerfile: ./compose/local/django/Dockerfile
|
2018-04-04 13:38:57 +03:00
|
|
|
image: {{ cookiecutter.project_slug }}_local_django
|
2022-01-17 11:53:56 +03:00
|
|
|
container_name: {{ cookiecutter.project_slug }}_local_django
|
2016-03-03 07:16:25 +03:00
|
|
|
depends_on:
|
2018-03-08 15:56:15 +03:00
|
|
|
- postgres
|
2021-11-25 18:55:03 +03:00
|
|
|
{%- if cookiecutter.use_celery == 'y' %}
|
|
|
|
- redis
|
|
|
|
{%- endif %}
|
2023-09-06 22:41:01 +03:00
|
|
|
{%- if cookiecutter.use_mailpit == 'y' %}
|
|
|
|
- mailpit
|
2018-03-08 15:56:15 +03:00
|
|
|
{%- endif %}
|
2017-08-11 10:13:30 +03:00
|
|
|
volumes:
|
2020-09-07 15:51:52 +03:00
|
|
|
- .:/app:z
|
2018-03-08 15:56:15 +03:00
|
|
|
env_file:
|
|
|
|
- ./.envs/.local/.django
|
|
|
|
- ./.envs/.local/.postgres
|
2016-03-03 07:16:25 +03:00
|
|
|
ports:
|
2023-04-15 14:15:15 +03:00
|
|
|
- '8000:8000'
|
2018-05-14 10:28:50 +03:00
|
|
|
command: /start
|
2016-04-11 01:33:14 +03:00
|
|
|
|
2017-08-11 10:13:30 +03:00
|
|
|
postgres:
|
2017-09-05 14:39:20 +03:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: ./compose/production/postgres/Dockerfile
|
2018-04-04 13:38:57 +03:00
|
|
|
image: {{ cookiecutter.project_slug }}_production_postgres
|
2022-01-17 11:53:56 +03:00
|
|
|
container_name: {{ cookiecutter.project_slug }}_local_postgres
|
2017-08-11 10:13:30 +03:00
|
|
|
volumes:
|
2022-12-10 01:04:12 +03:00
|
|
|
- {{ cookiecutter.project_slug }}_local_postgres_data:/var/lib/postgresql/data
|
|
|
|
- {{ cookiecutter.project_slug }}_local_postgres_data_backups:/backups
|
2018-03-08 15:56:15 +03:00
|
|
|
env_file:
|
|
|
|
- ./.envs/.local/.postgres
|
2020-04-24 17:23:41 +03:00
|
|
|
|
2023-09-06 22:41:01 +03:00
|
|
|
{%- if cookiecutter.use_mailpit == 'y' %}
|
2018-03-08 18:10:38 +03:00
|
|
|
|
2023-09-06 22:41:01 +03:00
|
|
|
mailpit:
|
2024-01-25 12:12:07 +03:00
|
|
|
image: docker.io/axllent/mailpit:latest
|
2023-09-06 22:41:01 +03:00
|
|
|
container_name: {{ cookiecutter.project_slug }}_local_mailpit
|
2016-04-11 00:18:38 +03:00
|
|
|
ports:
|
|
|
|
- "8025:8025"
|
2018-03-08 18:10:38 +03:00
|
|
|
|
|
|
|
{%- endif %}
|
|
|
|
{%- if cookiecutter.use_celery == 'y' %}
|
|
|
|
|
2017-08-11 10:13:30 +03:00
|
|
|
redis:
|
2024-01-25 12:12:07 +03:00
|
|
|
image: docker.io/redis:6
|
2022-01-17 11:53:56 +03:00
|
|
|
container_name: {{ cookiecutter.project_slug }}_local_redis
|
2017-08-11 10:13:30 +03:00
|
|
|
|
|
|
|
celeryworker:
|
|
|
|
<<: *django
|
2018-04-04 13:38:57 +03:00
|
|
|
image: {{ cookiecutter.project_slug }}_local_celeryworker
|
2022-01-17 11:53:56 +03:00
|
|
|
container_name: {{ cookiecutter.project_slug }}_local_celeryworker
|
2017-08-11 10:13:30 +03:00
|
|
|
depends_on:
|
|
|
|
- redis
|
2018-03-08 15:56:15 +03:00
|
|
|
- postgres
|
2023-09-06 22:41:01 +03:00
|
|
|
{%- if cookiecutter.use_mailpit == 'y' %}
|
|
|
|
- mailpit
|
2018-03-08 15:56:15 +03:00
|
|
|
{%- endif %}
|
2021-06-28 15:02:16 +03:00
|
|
|
ports: []
|
2018-05-14 10:28:50 +03:00
|
|
|
command: /start-celeryworker
|
2017-08-11 10:13:30 +03:00
|
|
|
|
|
|
|
celerybeat:
|
|
|
|
<<: *django
|
2018-04-04 13:38:57 +03:00
|
|
|
image: {{ cookiecutter.project_slug }}_local_celerybeat
|
2022-01-17 11:53:56 +03:00
|
|
|
container_name: {{ cookiecutter.project_slug }}_local_celerybeat
|
2017-08-11 10:13:30 +03:00
|
|
|
depends_on:
|
|
|
|
- redis
|
2018-03-08 15:56:15 +03:00
|
|
|
- postgres
|
2023-09-06 22:41:01 +03:00
|
|
|
{%- if cookiecutter.use_mailpit == 'y' %}
|
|
|
|
- mailpit
|
2018-03-08 15:56:15 +03:00
|
|
|
{%- endif %}
|
2021-06-28 15:02:16 +03:00
|
|
|
ports: []
|
2018-05-14 10:28:50 +03:00
|
|
|
command: /start-celerybeat
|
2018-03-08 18:10:38 +03:00
|
|
|
|
2018-06-27 19:33:21 +03:00
|
|
|
flower:
|
|
|
|
<<: *django
|
|
|
|
image: {{ cookiecutter.project_slug }}_local_flower
|
2022-01-17 11:53:56 +03:00
|
|
|
container_name: {{ cookiecutter.project_slug }}_local_flower
|
2018-06-27 19:33:21 +03:00
|
|
|
ports:
|
2023-04-15 14:15:15 +03:00
|
|
|
- '5555:5555'
|
2018-06-27 19:33:21 +03:00
|
|
|
command: /start-flower
|
|
|
|
|
2018-03-08 18:10:38 +03:00
|
|
|
{%- endif %}
|
2023-01-29 15:12:12 +03:00
|
|
|
{%- if cookiecutter.frontend_pipeline in ['Gulp', 'Webpack'] %}
|
2019-03-25 15:10:55 +03:00
|
|
|
|
|
|
|
node:
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: ./compose/local/node/Dockerfile
|
|
|
|
image: {{ cookiecutter.project_slug }}_local_node
|
2022-01-17 11:53:56 +03:00
|
|
|
container_name: {{ cookiecutter.project_slug }}_local_node
|
2019-03-25 15:10:55 +03:00
|
|
|
depends_on:
|
|
|
|
- django
|
|
|
|
volumes:
|
2020-09-07 15:51:52 +03:00
|
|
|
- .:/app:z
|
2019-03-25 15:10:55 +03:00
|
|
|
# http://jdlm.info/articles/2016/03/06/lessons-building-node-app-docker.html
|
|
|
|
- /app/node_modules
|
|
|
|
command: npm run dev
|
|
|
|
ports:
|
2023-04-15 14:15:15 +03:00
|
|
|
- '3000:3000'
|
2023-01-29 15:12:12 +03:00
|
|
|
{%- if cookiecutter.frontend_pipeline == 'Gulp' %}
|
2019-03-25 15:10:55 +03:00
|
|
|
# Expose browsersync UI: https://www.browsersync.io/docs/options/#option-ui
|
2023-04-15 14:15:15 +03:00
|
|
|
- '3001:3001'
|
2023-01-29 15:12:12 +03:00
|
|
|
{%- endif %}
|
2019-03-25 15:10:55 +03:00
|
|
|
|
|
|
|
{%- endif %}
|