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.2.6.tar.gz (16.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

determine_docker_tags-0.2.6-py3-none-any.whl (17.1 kB view details)

Uploaded Python 3

File details

Details for the file determine_docker_tags-0.2.6.tar.gz.

File metadata

  • Download URL: determine_docker_tags-0.2.6.tar.gz
  • Upload date:
  • Size: 16.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.12.3 Linux/6.8.0-51-generic

File hashes

Hashes for determine_docker_tags-0.2.6.tar.gz
Algorithm Hash digest
SHA256 568ad031202b7ba3bdc24a7ab61668f273e136d11bed2326026c549d5d8724e0
MD5 f64625f8e0fe221729bc51b7a1e2c305
BLAKE2b-256 22f89a419156dcd1ca656fa1c79fddc143c569758ad24200d4a35fcc840f3e55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for determine_docker_tags-0.2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 6100a726e4ac20a8019784b11ec9eef4c3e8d05f92866b2e847705d24e35212a
MD5 57906207f3b9faf910ad8da38207508d
BLAKE2b-256 bb90212828f566d875891367cd6352bd3881cb807433706725f5902ae5ee8251

See more details on using hashes here.

Supported by

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