mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 04:07:48 +03:00
10c85ce3d6
* Renamed local.yml to docker-compose.local.yml * Renamed production.yml to docker-compose.production.yml * Rename docs.yml to docker-compose.docs.yml * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Bruno Alla <alla.brunoo@gmail.com>
116 lines
3.1 KiB
YAML
116 lines
3.1 KiB
YAML
version: '3'
|
|
|
|
volumes:
|
|
{{ cookiecutter.project_slug }}_local_postgres_data: {}
|
|
{{ cookiecutter.project_slug }}_local_postgres_data_backups: {}
|
|
|
|
services:
|
|
django:{% if cookiecutter.use_celery == 'y' %} &django{% endif %}
|
|
build:
|
|
context: .
|
|
dockerfile: ./compose/local/django/Dockerfile
|
|
image: {{ cookiecutter.project_slug }}_local_django
|
|
container_name: {{ cookiecutter.project_slug }}_local_django
|
|
depends_on:
|
|
- postgres
|
|
{%- if cookiecutter.use_celery == 'y' %}
|
|
- redis
|
|
{%- endif %}
|
|
{%- if cookiecutter.use_mailpit == 'y' %}
|
|
- mailpit
|
|
{%- endif %}
|
|
volumes:
|
|
- .:/app:z
|
|
env_file:
|
|
- ./.envs/.local/.django
|
|
- ./.envs/.local/.postgres
|
|
ports:
|
|
- '8000:8000'
|
|
command: /start
|
|
|
|
postgres:
|
|
build:
|
|
context: .
|
|
dockerfile: ./compose/production/postgres/Dockerfile
|
|
image: {{ cookiecutter.project_slug }}_production_postgres
|
|
container_name: {{ cookiecutter.project_slug }}_local_postgres
|
|
volumes:
|
|
- {{ cookiecutter.project_slug }}_local_postgres_data:/var/lib/postgresql/data
|
|
- {{ cookiecutter.project_slug }}_local_postgres_data_backups:/backups
|
|
env_file:
|
|
- ./.envs/.local/.postgres
|
|
|
|
{%- if cookiecutter.use_mailpit == 'y' %}
|
|
|
|
mailpit:
|
|
image: docker.io/axllent/mailpit:latest
|
|
container_name: {{ cookiecutter.project_slug }}_local_mailpit
|
|
ports:
|
|
- "8025:8025"
|
|
|
|
{%- endif %}
|
|
{%- if cookiecutter.use_celery == 'y' %}
|
|
|
|
redis:
|
|
image: docker.io/redis:6
|
|
container_name: {{ cookiecutter.project_slug }}_local_redis
|
|
|
|
celeryworker:
|
|
<<: *django
|
|
image: {{ cookiecutter.project_slug }}_local_celeryworker
|
|
container_name: {{ cookiecutter.project_slug }}_local_celeryworker
|
|
depends_on:
|
|
- redis
|
|
- postgres
|
|
{%- if cookiecutter.use_mailpit == 'y' %}
|
|
- mailpit
|
|
{%- endif %}
|
|
ports: []
|
|
command: /start-celeryworker
|
|
|
|
celerybeat:
|
|
<<: *django
|
|
image: {{ cookiecutter.project_slug }}_local_celerybeat
|
|
container_name: {{ cookiecutter.project_slug }}_local_celerybeat
|
|
depends_on:
|
|
- redis
|
|
- postgres
|
|
{%- if cookiecutter.use_mailpit == 'y' %}
|
|
- mailpit
|
|
{%- endif %}
|
|
ports: []
|
|
command: /start-celerybeat
|
|
|
|
flower:
|
|
<<: *django
|
|
image: {{ cookiecutter.project_slug }}_local_flower
|
|
container_name: {{ cookiecutter.project_slug }}_local_flower
|
|
ports:
|
|
- '5555:5555'
|
|
command: /start-flower
|
|
|
|
{%- endif %}
|
|
{%- if cookiecutter.frontend_pipeline in ['Gulp', 'Webpack'] %}
|
|
|
|
node:
|
|
build:
|
|
context: .
|
|
dockerfile: ./compose/local/node/Dockerfile
|
|
image: {{ cookiecutter.project_slug }}_local_node
|
|
container_name: {{ cookiecutter.project_slug }}_local_node
|
|
depends_on:
|
|
- django
|
|
volumes:
|
|
- .:/app:z
|
|
# http://jdlm.info/articles/2016/03/06/lessons-building-node-app-docker.html
|
|
- /app/node_modules
|
|
command: npm run dev
|
|
ports:
|
|
- '3000:3000'
|
|
{%- if cookiecutter.frontend_pipeline == 'Gulp' %}
|
|
# Expose browsersync UI: https://www.browsersync.io/docs/options/#option-ui
|
|
- '3001:3001'
|
|
{%- endif %}
|
|
|
|
{%- endif %}
|