mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-02 03:00:23 +03:00
fix block error due to whitespace
This commit is contained in:
parent
42db022884
commit
89bf7f369b
|
@ -12,14 +12,12 @@ services:
|
||||||
- postgres_backup_dev:/backups
|
- postgres_backup_dev:/backups
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_USER={{cookiecutter.project_slug}}
|
- POSTGRES_USER={{cookiecutter.project_slug}}
|
||||||
|
{% if cookiecutter.use_docker == 'y' %}
|
||||||
{% if cookiecutter.use_docker == 'y' -%}
|
|
||||||
mailhog:
|
mailhog:
|
||||||
image: mailhog/mailhog
|
image: mailhog/mailhog
|
||||||
ports:
|
ports:
|
||||||
- "8025:8025"
|
- "8025:8025"
|
||||||
{%- endif %}
|
{% endif %}
|
||||||
|
|
||||||
django:
|
django:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
|
@ -36,7 +34,6 @@ services:
|
||||||
links:
|
links:
|
||||||
- postgres
|
- postgres
|
||||||
{% if cookiecutter.use_docker == 'y' %}- mailhog{% endif %}
|
{% if cookiecutter.use_docker == 'y' %}- mailhog{% endif %}
|
||||||
|
|
||||||
{% if cookiecutter.use_pycharm == 'y' %}
|
{% if cookiecutter.use_pycharm == 'y' %}
|
||||||
pycharm:
|
pycharm:
|
||||||
build:
|
build:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user