Skip to content
🎉 GoReleaser v2.18 is out! with release summaries, preflight checks, OpenTelemetry traces, and more!

Signing Docker manifests

GoReleaser can also sign Docker images and manifests. This pipe is based on the common sign pipe and is designed with cosign in mind.

Note

This pipe runs only at the end of the GoReleaser execution, in its publishing phase, because cosign changes the image in the registry.

To customize the signing pipeline you can use the following options:

.goreleaser.yaml
docker_signs:
  - # ID of the sign config, must be unique.
    # Only relevant if you want to produce some sort of signature file.
    #
    # Default: 'default'.
    id: foo

    # Path to the signature command.
    #
    # Default: 'cosign'.
    cmd: cosign

    # Command line arguments for the command.
    #
    # Default: ["sign", "--key=cosign.key", "${artifact}@${digest}", "--yes"].
    # Templates: allowed.
    args:
      - "sign"
      - "--key=cosign.key"
      - "--upload=false"
      - "${artifact}"
      - "--yes" # needed on cosign 2.0.0+

    # Which artifacts to sign.
    #
    #   all:       all artifacts
    #   none:      no signing
    #   images:    only docker images
    #   manifests: only docker manifests
    #   '':        images built by dockers_v2
    #
    # Default: ''.
    artifacts: all

    # IDs of the artifacts to sign.
    ids:
      - foo
      - bar

    # Allows to further filter the artifacts.
    #
    # Artifacts that do not match this expression will be ignored.
    #
    # 
GoReleaser Pro
#
Since v2.2
# Templates: allowed. if: '{{ eq .Os "linux" }}' # Stdin data to be given to the signature command as stdin. # # Templates: allowed. stdin: "{{ .Env.COSIGN_PWD }}" # StdinFile file to be given to the signature command as stdin. stdin_file: ./.password # List of environment variables that will be passed to the signing command # as well as the templates. env: - FOO=bar - HONK=honkhonk # By default, the stdout and stderr of the signing cmd are discarded unless # GoReleaser is running with `--verbose` set. # You can set this to true if you want them to be displayed regardless. # # Templates: allowed.
Since v2.13
output: true

Available variable names

These environment variables might be available in the fields that are templateable:

  • ${artifact}1: the path to the artifact that will be signed
  • ${digest}2: the digest of the image/manifest that will be signed
  • ${artifactID}: the ID of the artifact that will be signed
  • ${certificate}: the certificate file name, if provided

Common usage example

Assuming you have a cosign.key in the repository root and a COSIGN_PWD environment variable, the simplest configuration to sign both Docker images and manifests would look like this:

.goreleaser.yaml
docker_signs:
  - artifacts: all
    stdin: "{{ .Env.COSIGN_PWD }}"

Later on you (and anyone else) can verify the image with:

cosign verify --key cosign.pub your/image

Limitations

The same limitations of the signs pipe apply: if you set signature or certificate, that file should exist once the command finishes, and GoReleaser warns when it does not.

Note that cosign only issues a certificate when it signs keylessly, so certificate is of no use with --key.


  1. notice that this might contain / characters, which depending on how you use it might evaluate to actual paths within the file system. Use with care. ↩︎

  2. those are extracted automatically when running Docker push from within GoReleaser. Using the digest helps making sure you’re signing the right image and avoid concurrency issues. ↩︎

Last updated on