Immutable tags on Docker Hub

Availability: Beta

Immutable tags provide a way to ensure that specific image versions remain unchanged once they are published to Docker Hub. This feature helps maintain consistency and reliability in your container deployments by preventing accidental overwrites of important image versions.

What are immutable tags?

Immutable tags are image tags that, once pushed to Docker Hub, cannot be overwritten or deleted. This ensures that a specific version of an image remains exactly the same throughout its lifecycle, providing:

  • Version consistency
  • Reproducible builds
  • Protection against accidental overwrites
  • Better security and compliance

Enable immutable tags

To enable immutable tags for your repository:

  1. Sign in to Docker Hub .
  2. Select My Hub > Repositories.
  3. Select the repository where you want to enable immutable tags.
  4. Select the Settings tab
  5. Under Tag mutability settings, select Immutable.
  6. Select Save.

Once enabled, all tags are locked to their specific images, ensuring that each tag always points to the same image version and cannot be modified.

Note

All tags in the repository become immutable, including the latest tag.

Working with immutable tags

When immutable tags are enabled:

  • You cannot push a new image with the same tag name
  • You must use a new tag name for each new image version

To push an image, create a new tag for your updated image and push it to the repository.