mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-18 19:04:51 +03:00
mysql support in file
This commit is contained in:
parent
3f54385989
commit
89e87cbc55
|
@ -1,8 +1,14 @@
|
||||||
version: '3'
|
version: '3'
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
|
{%- if cookiecutter.database_engine == 'postgresql' %}
|
||||||
local_postgres_data: {}
|
local_postgres_data: {}
|
||||||
local_postgres_data_backups: {}
|
local_postgres_data_backups: {}
|
||||||
|
{%- endif %}
|
||||||
|
{%- if cookiecutter.database_engine == 'mysql' %}
|
||||||
|
local_mysql_data: {}
|
||||||
|
local_my_sql_backup: {}
|
||||||
|
{%- endif %}
|
||||||
|
|
||||||
services:
|
services:
|
||||||
django:{% if cookiecutter.use_celery == 'y' %} &django{% endif %}
|
django:{% if cookiecutter.use_celery == 'y' %} &django{% endif %}
|
||||||
|
@ -12,7 +18,12 @@ services:
|
||||||
image: {{ cookiecutter.project_slug }}_local_django
|
image: {{ cookiecutter.project_slug }}_local_django
|
||||||
container_name: django
|
container_name: django
|
||||||
depends_on:
|
depends_on:
|
||||||
|
{%- if cookiecutter.database_engine == 'postgresql' %}
|
||||||
- postgres
|
- postgres
|
||||||
|
{%- endif %}
|
||||||
|
{%- if cookiecutter.database_engine == 'mysql' %}
|
||||||
|
- mysql
|
||||||
|
{%- endif %}
|
||||||
{%- if cookiecutter.use_celery == 'y' %}
|
{%- if cookiecutter.use_celery == 'y' %}
|
||||||
- redis
|
- redis
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
@ -23,11 +34,17 @@ services:
|
||||||
- .:/app:z
|
- .:/app:z
|
||||||
env_file:
|
env_file:
|
||||||
- ./.envs/.local/.django
|
- ./.envs/.local/.django
|
||||||
|
{%- if cookiecutter.database_engine == 'postgresql' %}
|
||||||
- ./.envs/.local/.postgres
|
- ./.envs/.local/.postgres
|
||||||
|
{%- endif %}
|
||||||
|
{%- if cookiecutter.database_engine == 'mysql' %}
|
||||||
|
- ./.envs/.local/.mysql
|
||||||
|
{%- endif %}
|
||||||
ports:
|
ports:
|
||||||
- "8000:8000"
|
- "8000:8000"
|
||||||
command: /start
|
command: /start
|
||||||
|
|
||||||
|
{%- if cookiecutter.database_engine == 'postgresql' %}
|
||||||
postgres:
|
postgres:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
|
@ -39,6 +56,20 @@ services:
|
||||||
- local_postgres_data_backups:/backups:z
|
- local_postgres_data_backups:/backups:z
|
||||||
env_file:
|
env_file:
|
||||||
- ./.envs/.local/.postgres
|
- ./.envs/.local/.postgres
|
||||||
|
{%- endif %}
|
||||||
|
{%- if cookiecutter.database_engine == 'mysql' %}
|
||||||
|
mysql:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: ./compose/production/mysql/Dockerfile
|
||||||
|
image: {{ cookiecutter.project_slug }}_production_mysql
|
||||||
|
container_name: mysql
|
||||||
|
volumes:
|
||||||
|
- local_mysql_data:/var/lib/mysql/data:Z
|
||||||
|
- local_mysql_data_backups:/backups:z
|
||||||
|
env_file:
|
||||||
|
- ./.envs/.local/.mysql
|
||||||
|
{%- endif %}
|
||||||
|
|
||||||
docs:
|
docs:
|
||||||
image: {{ cookiecutter.project_slug }}_local_docs
|
image: {{ cookiecutter.project_slug }}_local_docs
|
||||||
|
|
Loading…
Reference in New Issue
Block a user