@codedependant/semantic-release-docker

docker package

Usage no npm install needed!

<script type="module">
  import codedependantSemanticReleaseDocker from 'https://cdn.skypack.dev/@codedependant/semantic-release-docker';
</script>

README

@codedependant/semantic-release-docker

semantic-release MIT license

A semantic-release plugin to use semantic versioning for docker images.

Supported Steps

verifyConditions

verifies that environment variables for authentication via username and password are set. It uses a registry server provided via config or environment variable (preferred) or defaults to docker hub if none is given. It also verifies that the credentials are correct by logging in to the given registry.

prepare

builds a an image using the specified docker file and context. This image will be used to create tags in later steps

publish

pushes the tags Images with specified tags and pushes them to the registry. Tags support simple templating via handlebars. Values enclosed in braces {{}} will be substituted with release context information

Installation

Run npm i --save-dev @codedependant/semantic-release-docker to install this semantic-release plugin.

Configuration

Docker registry authentication

The docker registry authentication set via environment variables. It is not required, and if omitted, it is assumed the docker daemon is already authenticated with the target registry.

Environment variables

Variable Description
DOCKER_REGISTRY_USER The user name to authenticate with at the registry.
DOCKER_REGISTRY_PASSWORD The password used for authentication at the registry.

Options

Option Description Default
dockerTags Optional. An array of strings allowing to specify additional tags to apply to the image. Supports templating [latest, {{major}}-latest, {{version}}]
dockerImage Optional. The name of the image to release. Parsed from package.json name property
dockerRegistry Optional. The hostname and port used by the the registry in format hostname[:port]. Omit the port if the registry uses the default port null (dockerhub)
dockerProject Optional. The project or repository name to publish the image to For scoped packages, the scope will be used, otherwise null
dockerFile Optional. The path, relative to $PWD to a Docker file to build the target image with Dockerfile
dockerContext Optional. A path, relative to $PWD to use as the build context A .
dockerLogin Optional. Set to false it by pass docker login if the docker daemon is already authorized true
dockerArgs Optional. Include additional values for docker's build-arg. Supports templating
dockerPublish Optional. Automatically push image tags during the publish phase. true

Build Arguments

By default several build arguments will be included when the docker images is being built. Build arguments can be templated in the same fashion as docker tags. If the value for a build argument is explicitly true, the value will be omitted and the value from a matching environment variable will be utilized instead. This can be useful when trying to include secrets and other sensitive information

Argument Name Description Default
SRC_DIRECTORY The of the directory the build was triggered from The directory name of CWD
TARGET_PATH Path relative to the execution root. Useful for Sharing a Single Docker file in monorepos
NPM_PACKAGE_NAME The name property extracted from package.json - if present
NPM_PACKAGE_SCOPE The parsed scope from the name property from package.json - sans @
CONFIG_NAME The configured name of the docker image. The parsed package name
CONFIG_PROJECT The configured docker repo project name The package scope if present
GIT_SHA The commit SHA of the current release
GIT_TAG The git tag of the current release

Template Variables

String template will be passed these

Variable name Description Type
git_sha The commit SHA of the current release String
git_tag The git tag of the current release String
release_type The severity type of the current build (major, minor, patch) String
relase_notes The release notes blob associated with the release String
next Semver object representing the next release Object
previous Semver object representing the previous release Object
major The major version of the next release Number
minor The minor version of the next release Number
patch The patch version of the next release Number
env Environment variables that were set at build time Object
pkg Values parsed from package.json Object
build A Random build hash representing the current execution context String
now Current timestamp is ISO 8601 format String

Template Helpers

The following handlebars template helpers are pre installed

Helper name Description Return Type Example
endswith returns true if a string ends with another Boolean
{{#if (endswith myvar 'ing')}}{{ othervar }}{{/if}}
eq returns true if two values are strictly equal to each other Boolean
{{#if (eq var_one var_two)}}{{ var_three }}{{/if}}
gt returns true if the first value is greater than the second Boolean
gte returns true if the first value is greater than or equal to the second Boolean
{{#if (gte var_one var_two)}}{{ var_three }}{{/if}}
includes returns true if the input (string | array) includes the second value Boolean
{{#if (includes some_array 'one')}}{{ var_one }}{{/if}}
lower returns the lower cased varient of the input string String
{{ lower my_var }}
lt returns true if the first value is less than the second Boolean
{{#if (lt var_one var_two)}}{{ var_three }}{{/if}}
lte returns true if the first value is less than or equal to the second Boolean
{{#if (lte var_one var_two)}}{{ var_three }}{{/if}}
neq returns true if two values are not equal to each other Boolean
{{#if (neq var_one var_two)}}{{ var_three }}{{/if}}
pick returns the first non null-ish value. Will treat false as a value any
{{#with (pick var_one, var_two) as | value |}}{{ value }}{{/with}}
split splits csv values into a javascript array Array
{{#each (split csv_value)}}{{ this }}{{/each}}
startswith returns true if a string starts with another Boolean
{{#if (starts myvar 'foo')}}{{ othervar }}{{/if}}
upper returns the upper cased varient of the input string String
{{upper my_var}}

Usage

full configuration:

// release.config.js

module.exports = {
  branches: ['main']
  plugins: [
    ['@codedependant/semantic-release-docker', {
      dockerTags: ['latest', '{{version}}', '{{major}}-latest', '{{major}}.{{minor}}'],
      dockerImage: 'my-image',
      dockerFile: 'Dockerfile',
      dockerRegistry: 'quay.io',
      dockerProject: 'codedependant',
      dockerArgs: {
        API_TOKEN: true
      , RELEASE_DATE: new Date().toISOString()
      , RELEASE_VERSION: '{{next.version}}'
      }
    }]
  ]
}

results in quay.io/codedependant/my-image with tags latest, 1.0.0, 1-latest and the 1.0 determined by semantic-release.

Alternatively, using global options w/ root configuration

// package.json
{
  "name": "@codedependant/test-project"
  "version": "1.0.0"
  "release": {
    "extends": "@internal/release-config-docker",
    "dockerTags": ["latest", "{{version}}", "{{major}}-latest", "{{major}}.{{minor}}"],
    "dockerImage": "my-image",
    "dockerFile": "Dockerfile",
    "dockerRegistry": "quay.io",
    "dockerArgs": {
      "GITHUB_TOKEN": true
    , "SOME_VALUE": '{{git_sha}}'
    }
  }
}

This would generate the following for a 1.2.0 build

$ docker build -t quay.io/codedependant/my-image --build-arg GITHUB_TOKEN --build-arg SOME_VALUE=6eada70 -f Dockerfile .
$ docker tag <SHA1> latest
$ docker tag <SHA1> 1.2.0
$ docker tag <SHA1> 1.2
$ docker tag <SHA1> 1-latest
$ docker push quay.io/codedependant/my-image

minimum configuration:

{
  "release": {
    "plugins": [
      "@codedependant/semantic-release-docker"
    ]
  }
}
  • A package name @codedependant/test-project results in docker project namecodedependant and image name test-project
  • A package name test-project results in a docker image name test-project

the default docker image tags for the 1.0.0 release would be 1.0.0, 1-latest, latest

Development

Docker Registry

To be able to push to the local registry with auth credentials, ssl certificates are required. This project uses self signed certs. To regenerate the certs run the following:

$ openssl req -new -newkey rsa:2048 -days 365 -nodes -x509 -keyout server.key -out server.crt

NOTE: When prompted for an FQDN it must be registry:5000 NOTE: The credentials for the local registry are user: iamweasel, pass: secretsquirrel