Read image version from environment or file inside Docker image in a running container

Revision history
Tags: docker ci

Introduction

We wanted to be able to know the current image version from within the running container to version our socket.io connections.

We are tagging all our automatically built images with the current git commit hash, and now we want to either read it from environment or read it from a file from within the docker image itself.

Dockerfile

Within the Dockerfile, describing your image, there are lots of options to control how your image is being built.

For our simple test, we can construct a Dockerfile like this:

FROM busybox

ARG IMAGE_VERSION=''
ENV IMAGE_VERSION ${IMAGE_VERSION}

RUN echo ${IMAGE_VERSION} >> /.version

CMD ["cat", "/.version"]

Let’s build this image with an explicit build arg and run it

$ docker build --tag image-version-test --build-arg=1.42 .
$ docker run image-version-test
1.42

It successfully returns the value of the build time argument, read from the /.version file from the file system of the container. Let’s see what the environment variables look like.

$ docker run --rm image-version-test printenv
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
HOSTNAME=5d5f077af6db
IMAGE_VERSION=1.42
HOME=/root

A danger to be aware of here is that it’s always possible to override the value of the environment variable at run time, but the contents of /.version will always be the same for each individual image version.

Docker compose

When building with Docker Compose, build time arguments can be specified using args. Arguments with no value specified will be replaced with values from an environment variable with the same name.

version: '2'

services:
  image-version-test:
    build:
      context: .
      args:
        - IMAGE_VERSION

I can now build the image using docker-compose explicitly specifying a value for IMAGE_VERSION from environment.

$ export IMAGE_VERSION=2.21
$ docker-compose build image-version-test
2.21

And since this was a build time argument, changing environment now won’t make a difference.

$ export IMAGE_VERSION=7
$ docker-compose run image-version-test
2.21

Tips

If you want to build using the current git commit hash, it can be set using

$ export IMAGE_VERSION=$(git log -1 --format=%H)

References

If you have any comments or feedback, please send me an e-mail. (stig at stigok dotcom).

Did you find any typos, incorrect information, or have something to add? Then please propose a change to this post.

Creative Commons License This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.