Docker (as one specific container technology product) is a basic ingredient of our development infrastructure that steadily gained ground from the production servers over the build servers on our development machines. And while it is not simple when used for operations, the complexity increases a lot when used for development purposes.
One way to express complexity is by making the moving parts configurable and using different configurations. A common way to make things configurable with containers are environment variables. Running a container might look like a endurance typing contest if used extensibly:
docker run --rm \
-e POSTGRES_USER=myuser \
-e POSTGRES_PASSWORD=mysecretpassword \
-e POSTGRES_DB=mydatabase \
-e PGDATA=/var/lib/postgresql/data/pgdata \
ubuntu:22.04 env
This is where our fun begins.
Using an env-file for extensive configurations
The parameter –env-file reads environment variables from a local text file with a simple key=value format:
docker run --rm --env-file my-vars.env ubuntu:22.04 env
The file my-vars.env contains all the variables line by line:
FIRST=1
SECOND=2
If we run the command above in a directory containing the file, we get the following output:
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
HOSTNAME=46a23b701dc8
FIRST=1
SECOND=2
HOME=/root
The HOSTNAME might vary, but the FIRST and SECOND environment variables are straight from our file.
The only caveat is that the env-file really has to exist, or we get an error:
docker: open my-vars2.env: Das System kann die angegebene Datei nicht finden.
My beloved shell
The env-file can be empty, contain only comments (use # to begin them) or whitspace, but it has to be present.
Please be aware that the env-files are different from the .env-file(s) in docker-compose. A lot of fun is lost by this simple statement, like variable expansion. As far as I’m aware, there is no .env-file mechanism in docker itself.
But we can have some kind of variable substitution, too:
Using multiple env-files for layered configurations
If you don’t want to change all your configuration entries all the time, you can layer them. One layer for the “constants”, one layer for global presets and one layer for local overrides. You can achieve this with multiple –env-files parameters, they are evaluated in your specified order:
docker run -it --rm --env-file first.env --env-file second.env ubuntu:22.04 env
Let’s assume that the content of first.env is:
TEST=1
FIRST=1
And the content of second.env is:
TEST=2
SECOND=2
The results of our container call are (abbreviated):
TEST=2
FIRST=1
SECOND=2
You can see that the second TEST assignment wins. If you switch the order of your parameters, you would read TEST=1.
Now imagine that first.env is named global.env and second.env is named local.env (or default.env and development.env) and you can see how this helps you with modular configurations. If only the files need not to exist all the time, it would even fit well with git and .gitignore.
The best thing about this feature? You can have as many –env-file parameters as you like (or your operating system allows).
Mixing local and configured environment variables
We don’t have explicit variable expansion (like TEST=${FIRST} or something) with –env-files, but we have a funny poor man’s version of it. Assume that the second.env from the example above contains the following entries:
OS
TEST=2
SECOND=2
You’ve seen that right: The first entry has no value (and no equal sign)! This is when the value is substituted from your operating system:
TEST=2
FIRST=1
OS=Windows_NT
SECOND=2
By just declaring, but not assigning an environment variable it is taken from your own environment. This even works if the variable was already assigned in previous –env-files.
If you don’t believe me, this is a documented feature:
If the operator names an environment variable without specifying a value, then the current value of the named variable is propagated into the container’s environment
https://docs.docker.com/engine/reference/run/#env-environment-variables
And even more specific:
When running the command, the Docker CLI client checks the value the variable has in your local environment and passes it to the container. If no
https://docs.docker.com/engine/reference/commandline/run/#set-environment-variables–e—env—env-file=
is provided and that variable is not exported in your local environment, the variable won’t be set in the container.
This is a cool feature, albeit a little bit creepy. Sadly, it doesn’t work in all tools that allow to run docker containers. Last time I checked, PyCharm omitted this feature (as one example).
Epilogue
I’ve presented you with three parts that can be used to manage different configurations for docker containers. There are some pain points (non-optional file existence, feature loss in tools, no direct variable expansion), but also a lot of fun.
Do you know additional tricks and features in regard to environment variables and docker? Comment below or link to your article.