mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 04:07:48 +03:00
cbb0e19de7
* Add support for Webpack as frontend pipeline * Rename CI jobs * Fix a couple of issues with Webpack + Docker * Don't include Boostrap CSS from CDN with Webpack * Rename variable * Set publicPath in prod webpack config * Fix removal of SASS files in post-gen hooks * Add Webpack to readme usage section * Run Django + Webpack dev server concurrently without Docker * Fix async runserver command with Gulp/Webpack * Upgrade django-webpack-loader to 1.5.0 * Pass variables required by Webpack at build time * Upgrade django-webpack-loader to 1.7.0 * Add missing condition * Add support for Azure Storage + Webpack * Whitespaces * Rename ROOT_DIR -> BASE_DIR * Rename jobs * Bump django-webpack-loader to latest * Document limitation of Docker + Webpack + no Whitenoise * Update section on custom Bootstrap compilation in generated readme
131 lines
3.5 KiB
YAML
131 lines
3.5 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_mailhog == 'y' %}
|
|
- mailhog
|
|
{%- 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
|
|
|
|
docs:
|
|
image: {{ cookiecutter.project_slug }}_local_docs
|
|
container_name: {{ cookiecutter.project_slug }}_local_docs
|
|
build:
|
|
context: .
|
|
dockerfile: ./compose/local/docs/Dockerfile
|
|
env_file:
|
|
- ./.envs/.local/.django
|
|
volumes:
|
|
- ./docs:/docs:z
|
|
- ./config:/app/config:z
|
|
- ./{{ cookiecutter.project_slug }}:/app/{{ cookiecutter.project_slug }}:z
|
|
ports:
|
|
- "9000:9000"
|
|
command: /start-docs
|
|
{%- if cookiecutter.use_mailhog == 'y' %}
|
|
|
|
mailhog:
|
|
image: mailhog/mailhog:v1.0.0
|
|
container_name: {{ cookiecutter.project_slug }}_local_mailhog
|
|
ports:
|
|
- "8025:8025"
|
|
|
|
{%- endif %}
|
|
{%- if cookiecutter.use_celery == 'y' %}
|
|
|
|
redis:
|
|
image: 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_mailhog == 'y' %}
|
|
- mailhog
|
|
{%- 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_mailhog == 'y' %}
|
|
- mailhog
|
|
{%- 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 %}
|