outsource env vars to docker compose vars #7

Closed
csimonis wants to merge 7 commits from feature/docker-env into main
Showing only changes of commit 9ecc76ce8d - Show all commits

4
.env
View File

@ -15,8 +15,8 @@
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration # https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
###> symfony/framework-bundle ### ###> symfony/framework-bundle ###
APP_ENV=dev APP_ENV=${APP_ENV:-dev}
APP_SECRET=bfc9c288ee3dcce80dec8622c2870f27 APP_SECRET=bfc9c288ee3dcce80dec8622c2870f27
###< symfony/framework-bundle ### ###< symfony/framework-bundle ###
DATA_DIR='/var/www/html/data' DATA_DIR=${DATA_DIR:-/var/www/html/data}