Rename dev.env to local.env

This commit is contained in:
Nikita P. Shupeyko 2017-04-24 17:54:22 +03:00
parent de914fc0df
commit edfa060d79
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ services:
- postgres_data_dev:/var/lib/postgresql/data - postgres_data_dev:/var/lib/postgresql/data
- postgres_backup_dev:/backups - postgres_backup_dev:/backups
env_file: env_file:
- dev.env - local.env
django: django:
build: build:
@ -24,7 +24,7 @@ services:
- mailhog - mailhog
{%- endif %} {%- endif %}
env_file: env_file:
- dev.env - local.env
environment: environment:
- USE_DOCKER=yes - USE_DOCKER=yes
volumes: volumes:
@ -40,7 +40,7 @@ services:
depends_on: depends_on:
- postgres - postgres
env_file: env_file:
- dev.env - local.env
volumes: volumes:
- .:/app - .:/app
{% endif %} {% endif %}