#48 - deployment #68
Reference in New Issue
Block a user
Delete Branch "#48-deployment"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Please define default port, to avoid issues during copy .env.example to .env in new project.
@@ -30,1 +32,3 @@EXTERNAL_WEBSERVER_PORT=REDIS_PORT=6379REDIS_HOST=toby-redisMaybe it will be good to create separate
env_filefor docker-compose config?@@ -30,1 +32,3 @@EXTERNAL_WEBSERVER_PORT=REDIS_PORT=6379REDIS_HOST=toby-redisSeparate
env fileonly for docker-related config? What if we have the same variables in app and docker?@@ -12,3 +12,3 @@DB_PORT=3306DB_PORT=5432DB_DATABASE=tobyDB_USERNAME=tobyI didn't notice that there is a default value in docker-compose.yml. So let's make them consistent, and please set 80 in .env file.
@@ -30,1 +32,3 @@EXTERNAL_WEBSERVER_PORT=REDIS_PORT=6379REDIS_HOST=toby-redisI thought about move all variables related to docker-compose substitution (docker-compose use shell variables and then variables from .env file). There cannot be multiple .env files for building docker-compose config.
We can specify
env_filesparam in each service but then all variables from provided file will be injected into service container. That wont help us with this problem about multiple docker variables in.envfile.