You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would be very useful to be able to set dynamic environment variables in the env_file. The work around seems to be currently to run a bash script that loads these parameters before running docker compose. It would be much cleaner if the env_file could directly load these parameters.
E.g.
services:
webapp:
env_file: params.env
where param.env contains
DYN_PARAM=${SOME_OTHER_PARAM}
The text was updated successfully, but these errors were encountered:
Description
I would be very useful to be able to set dynamic environment variables in the
env_file
. The work around seems to be currently to run a bash script that loads these parameters before running docker compose. It would be much cleaner if theenv_file
could directly load these parameters.E.g.
where
param.env
containsThe text was updated successfully, but these errors were encountered: