semantic-release-docker

Set of semantic-release plugins to publish to docker hub

Usage no npm install needed!

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

README

semantic-release-docker

npm build downloads dependencies peerDependencies Greenkeeper code style: prettier semantic-release license

Set of semantic-release plugins for publishing a docker image to Docker Hub.

{
  "release": {
    "verifyConditions": {
      "path": "semantic-release-docker",
      "registryUrl": "docker.io"
    },
    "publish": {
      "path": "semantic-release-docker",
      "name": "username/imagename"
    }
  }
}

Configuration

Your credentials have to be configured with the environment variables DOCKER_USERNAME and DOCKER_PASSWORD.

In addition, you need to specify the name of the image as the name setting in the publish step. If you need to specify a custom docker registry URL, add it as the registryUrl setting in the verifyConditions step.

Plugins

verifyConditions

Verify that all needed configuration is present and login to the Docker registry.

publish

Tag the image specified by name with the new version, push it to Docker Hub and update the latest tag.

Example .travis.yml

jobs:
  include:
    - stage: release
      language: node_js
      node_js: '8'
      services:
        - docker
      script:
        - docker build -t username/imagename .
        - npm run semantic-release

stages:
  - test
  - name: release
    if: branch = master AND type = push AND fork = false

branches:
  except:
    - /^v\d+\.\d+\.\d+$/