Skip to content

Docker credentials

The Docker credential integration is available in SecretSpec 0.20+. It lets docker pull, docker push, docker build, and Docker Compose retrieve registry credentials from any SecretSpec provider without copying the password or token into Docker’s config.json.

  • Docker
  • SecretSpec 0.20 or newer, including docker-credential-secretspec on PATH

These commands are available in SecretSpec 0.20+.

Configure the registry with its non-secret username:

Terminal window
$ secretspec docker configure --registry ghcr.io --username YOUR_USERNAME

After confirmation, the command prints the matching login command:

Terminal window
Configured Docker credential for ghcr.io.
Docker configuration: /home/you/.docker/config.json
Store the credential with: secretspec docker login 'ghcr.io'
Undo with: secretspec docker unconfigure --registry 'ghcr.io'

Store the password or access token in SecretSpec’s embedded, registry-isolated credential store:

Terminal window
$ secretspec docker login ghcr.io

login prompts securely on a terminal and reads the password or token from standard input when piped.

Docker now invokes docker-credential-secretspec get automatically:

Terminal window
$ docker pull ghcr.io/OWNER/IMAGE:TAG
$ docker push ghcr.io/OWNER/IMAGE:TAG

configure does not retrieve or store the credential. It adds the registry’s credHelpers entry and records only the registry, Docker configuration path, username, provider selection, and other value-free metadata. login prompts for the secret and stores it through the selected provider. Each registry and physical Docker configuration pair has a separate SecretSpec project and secret-key identity, so credentials remain isolated even in flat providers that do not namespace keys by project or profile. SecretSpec’s managed state is owner-readable and owner-writable only; Docker’s existing config.json permissions are preserved.

Rerunning configure for the same registry and Docker configuration replaces its SecretSpec metadata and reports that replacement. It does not delete the stored credential.

To use a provider other than your default, pass the same override to both commands. The follow-up command printed by configure includes it automatically:

Terminal window
$ secretspec docker configure \
--registry ghcr.io \
--username YOUR_USERNAME \
--provider onepassword
$ secretspec docker login ghcr.io --provider onepassword

Exported SECRETSPEC_FILE, SECRETSPEC_PROFILE, SECRETSPEC_PROVIDER, and SECRETSPEC_REASON values are not saved as durable Docker helper settings. Pass --file, --profile, --provider, or --reason explicitly when the helper should keep using that selection.

Docker uses the historical key https://index.docker.io/v1/ for Docker Hub. SecretSpec 0.20+ normalizes the familiar Docker Hub hostnames and URL forms to that key:

Terminal window
$ secretspec docker configure \
--registry docker.io \
--username YOUR_DOCKER_ID
$ secretspec docker login docker.io

Registry addresses may contain a port, such as registry.example.com:5000, but not a repository path. Credentials are scoped to the registry rather than an image namespace.

Custom Docker credential configuration is available in SecretSpec 0.20+.

For a credential already declared by a project, pass --file to select the advanced custom-manifest mode. In this mode, --token-secret and either --username or --username-secret are required:

[project]
name = "docker-credentials"
revision = "1.0"
[profiles.default]
GHCR_TOKEN = { description = "GitHub Container Registry token" }
Terminal window
$ secretspec set GHCR_TOKEN --file secretspec.toml
$ secretspec --file secretspec.toml docker configure \
--registry ghcr.io \
--token-secret GHCR_TOKEN \
--username YOUR_USERNAME

To resolve the username from SecretSpec too, declare it and replace --username with --username-secret GHCR_USERNAME. Custom-manifest mode also accepts --profile and --provider.

The managed state records the manifest’s absolute path and resolved profile, but never resolved secret values. A symlinked manifest retains its logical path, so relative extends entries resolve beside the symlink. If the manifest moves, rerun configure for the affected registry. Manage custom-manifest values with secretspec set and secretspec delete; secretspec docker login and logout intentionally manage only the embedded store.

Per-configuration Docker credential isolation is available in SecretSpec 0.20+. SecretSpec and Docker both honor DOCKER_CONFIG when selecting config.json:

Terminal window
$ DOCKER_CONFIG="$HOME/.config/docker-work" \
secretspec docker configure \
--registry registry.example.com \
--username YOUR_USERNAME

The same registry can use different SecretSpec credentials in different Docker configuration directories. Embedded credentials are isolated by both registry and the physical Docker configuration path. Equivalent paths through symlinked directories resolve to the same credential identity. Use the same DOCKER_CONFIG value when logging in, logging out, or unconfiguring entries from that file.

These removal commands are available in SecretSpec 0.20+.

Remove an embedded secret without changing Docker’s helper configuration:

Terminal window
$ secretspec docker logout ghcr.io

Pass the same --provider used for login when it was explicitly overridden.

Remove one helper registration from the active Docker configuration:

Terminal window
$ secretspec docker unconfigure --registry ghcr.io

Remove every Docker credential helper registration that SecretSpec owns in that file:

Terminal window
$ secretspec docker unconfigure --all

Configuration changes prompt with a default of No. Pass --yes for non-interactive setup or removal. SecretSpec preserves the default credential store, other registry helpers, existing auths, and unrelated Docker options. If a managed entry changes outside SecretSpec, unconfigure refuses to modify another helper’s entry. If the SecretSpec helper entry is already absent, unconfigure safely removes the stale managed state so an interrupted removal can be rerun.

logout and unconfigure are independent: logout deletes the embedded secret, while unconfigure removes Docker’s reference to the helper. This matches the separation between login and configure.

In SecretSpec 0.20+, docker-credential-secretspec answers Docker’s get operation. It rejects store, erase, and list, so Docker’s own docker login and docker logout cannot overwrite or delete values in a shared provider. Use secretspec docker login and secretspec docker logout for the embedded store, or normal SecretSpec commands for a custom manifest.

Docker may still print Removing login credentials and exit successfully after docker logout even though a read-only helper retained the credential. Use secretspec docker logout to remove the stored value, and secretspec docker unconfigure to stop Docker from invoking the helper.

When no matching configuration or stored value exists, the helper returns Docker’s standard credential-not-found response.