Remove redundant spaces in local.yml and production.yml

This commit is contained in:
Nikita P. Shupeyko 2018-06-28 16:30:58 +03:00
parent cc5a76268b
commit 225ea3448e
2 changed files with 5 additions and 5 deletions

View File

@ -66,9 +66,9 @@ services:
volumes: volumes:
- local_redis_data:/data - local_redis_data:/data
{%- endif %} {%- endif %}
postgres: postgres:
build: ./docker/postgres/ build: ./docker/postgres/
image: {{ cookiecutter.project_slug }}_production_postgres image: {{ cookiecutter.project_slug }}_production_postgres
volumes: volumes:
- local_postgres_data:/var/lib/postgresql/data - local_postgres_data:/var/lib/postgresql/data
@ -78,7 +78,7 @@ services:
{%- if cookiecutter.use_mailhog == 'y' %} {%- if cookiecutter.use_mailhog == 'y' %}
mailhog: mailhog:
build: ./docker/mailhog/ build: ./docker/mailhog/
ports: ports:
- "8025:8025" - "8025:8025"

View File

@ -63,7 +63,7 @@ services:
{%- endif %} {%- endif %}
postgres: postgres:
build: ./docker/postgres/ build: ./docker/postgres/
image: {{ cookiecutter.project_slug }}_production_postgres image: {{ cookiecutter.project_slug }}_production_postgres
volumes: volumes:
- production_postgres_data:/var/lib/postgresql/data - production_postgres_data:/var/lib/postgresql/data
@ -77,7 +77,7 @@ services:
- production_redis_data:/data - production_redis_data:/data
caddy: caddy:
build: ./docker/caddy/ build: ./docker/caddy/
image: {{ cookiecutter.project_slug }}_production_caddy image: {{ cookiecutter.project_slug }}_production_caddy
depends_on: depends_on:
- django - django