Skip to main content

A small program to determine docker image tags

Project description

determine-docker-tags

A python program used to determine which docker tags should be applied to a docker image depending on various factors. This is mainly intended to be used together with Drone CI to automatically figure out version tags before building a container image.

Installation

As this is mainly intended to be used with Drone CI there is a ready to go docker image on Docker Hub. You can also find the source for the docker image here.

If you're not interested in a docker image you can also find it on PyPi and it can easily be installed with:

pip install determine-docker-tags

Options

Here is a list of the options available. You can find more detailed usage instructions below.

ENV Var Default Description
VERSION_TYPE "" How the program should find the version number. Can be "docker_env", "docker_from", "date" or "".
APP_NAME "" The name of the application whose version number you want to use to generate tags.
DOCKERFILE_PATH "Dockerfile" The path to the Dockerfile you want to run the program on
APP_ENV "" A static string to add to the end of every tag with a "-" added inbetween the tag and the string. The string will not be added to any tags defined in CUSTOM_TAGS.
CUSTOM_TAGS "" Any extra static tags you want to add to the image, for example "latest". You can provide a list in the form of a comma separated string to specify multiple tags. For example "latest,prod,example"
INCLUDE_MAJOR "yes" If the major version number should be a tag. This setting will be ignored if the major version number is 0. Can be "yes" or "no".
INCLUDE_SUFFIX "yes" If the suffix that you find after the version number in many docker image tags should be kept and added to every tag. Can be "yes" or "no"

Usage

The program is configured through environment variables. You can see the different options below. The program automatically figures out the version numbers to use as tags from a Dockerfile. The tags are put into a .tags file in the current workspace to be picked up by the drone docker plugin. This program is mainly intended to handle SemVer and may or may not work well with other versioning styles.

Version type

To use the program you first need to figure out which VERSION_TYPE you want to use. There are four options to choose from. The default or an empty string requires CUSTOM_TAGS to be set and just creates a .tags file with the contents of CUSTOM_TAGS.

date

If VERSION_TYPE is set to date a tag will be created corresponding to the current date in format YEARMONTHDAY for example 20210101. If APP_ENV is set it will currently be ignored using this VERSION_TYPE.

docker_env

If VERSION_TYPE is set to docker_env then APP_NAME is also required. When docker_env is used the program looks for the APP_NAME version number set as an ENV var in the Dockerfile. The required formating to use in the Dockerfile is:

ENV APP_NAME_VERSION VERSION_NUMBER

So lets say the "APP_NAME" we are looking for is Nginx, then we would set "APP_NAME" to "NGINX" and the ENV var in the Dockerfile would look like this:

ENV NGINX_VERSION 1.18.0

This would generate the following tags:

1,1.18,1.18.0

docker_from

If VERSION_TYPE is set to docker_from then APP_NAME is also required. When using this VERSION_TYPE the version number is taken from a FROM instruction in the provided Dockerfile. Let's say we had the following FROM instruction in our Dockerfile:

FROM nginx:1.18.0

We then set APP_NAME to nginx and the generated tags would be:

1,1.18,1.18.0

APP ENV

APP_ENV is a static string that will be added to the end of dynamically created tag, so not the ones defined in CUSTOM_TAGS. A - is added between the generated tag and the contents of APP_ENV. Let's say we had the version number 1.18.0 and APP_ENV was set to prod then we would get the following tags:

1-prod,1.18-prod,1.18.0-prod

INCLUDE_MAJOR

INCLUDE_MAJOR determine whether or not the major version number should have a tag of its own. The default for this option is yes If the major version number is 0 this option will be ignored and a tag with only the major version number won't be created. Let's say we had the version number 1.18.0 and INCLUDE_MAJOR is set to no then we would get the following tags:

1.18,1.18.0

INCLUDE_SUFFIX

INCLUDE_SUFFIX is mainly intended to be used with the docker_from version type. It determines whether or not the suffix should be included in the generated tags. The default for this option is yes. Let's say we had the following FROM instruction in our Dockerfile:

FROM nginx:1.18.0-alpine

With the default of yes that would generated the following tags:

1-alpine,1.18-alpine,1.18.0-alpine

And if set to no the following tags would be generated:

1,1.18,1.18.0

License

This program is licensed under the GPLv3 or later.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

determine-docker-tags-0.1.10.tar.gz (16.7 kB view details)

Uploaded Source

Built Distribution

determine_docker_tags-0.1.10-py3-none-any.whl (17.0 kB view details)

Uploaded Python 3

File details

Details for the file determine-docker-tags-0.1.10.tar.gz.

File metadata

  • Download URL: determine-docker-tags-0.1.10.tar.gz
  • Upload date:
  • Size: 16.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.7 CPython/3.8.11 Linux/5.4.0-72-generic

File hashes

Hashes for determine-docker-tags-0.1.10.tar.gz
Algorithm Hash digest
SHA256 18e2ae110c99ee6f4a0d14c3af6a14ebb4cace336d8762c4a3f84d6eab7e28a7
MD5 613ec9a78fdb4e02811b687f8be7481d
BLAKE2b-256 61ee0d18ae05f58f9679a700c70d65aff620c8d6a57b95bbf82d5776add96ee0

See more details on using hashes here.

File details

Details for the file determine_docker_tags-0.1.10-py3-none-any.whl.

File metadata

File hashes

Hashes for determine_docker_tags-0.1.10-py3-none-any.whl
Algorithm Hash digest
SHA256 2de8be4dc0e128087339a1218a3da13361a075c514f1adff215959ec350507ee
MD5 df01551def3542a88ecff84acc5af9e9
BLAKE2b-256 b57ff84df1e72ee9971f1433635132e7d36a9e7c7f700abe020797da8573b4c7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page