Docker "tag does not exist in registry" in CI
A pull names a repository plus a tag; if that tag does not exist in the registry, the registry returns "manifest unknown". In CI this is usually a typo, a tag that a previous job was supposed to push but did not, or a deleted/retention-expired tag.
What this error means
A docker pull myorg/app:somefeature fails with manifest for myorg/app:somefeature not found: manifest unknown even though the repository exists.
docker
Error response from daemon: manifest for myorg/app:1.4.2-rc not found: manifest unknown: manifest unknownCommon causes
The tag was never pushed
A downstream job pulls a tag a build job failed to push, or pushed under a different name.
A typo or wrong tag computation
A mismatched tag derived from a branch/sha that does not match what was pushed.
The tag was deleted or expired
A registry retention policy or manual cleanup removed the tag.
How to fix it
Confirm the tag exists before pulling
- List the tags in the repository and pull one that is actually present.
Terminal
docker buildx imagetools inspect myorg/app:1.4.2-rc || \
echo "tag missing in registry"Make the producing job push the tag
- Ensure the build/push job ran and pushed the exact tag the consumer expects.
- Use the same tag expression in both jobs.
Terminal
TAG="myorg/app:${GITHUB_SHA}"
docker buildx build --push -t "$TAG" .
# consumer uses the identical TAGHow to prevent it
- Compute the push and pull tag from one shared expression.
- Gate consumers on the producer job succeeding so the tag always exists first.
Related guides
Docker "manifest unknown" in CIFix the Docker "manifest unknown" / "manifest for ... not found" pull error in CI, caused by a tag or digest…
Docker "failed to push: tag does not exist" - Push of an Unbuilt Tag in CIFix Docker "failed to push some refs" / "tag does not exist" in CI - pushing a tag that was never created loc…
Docker "tag does not exist" - Fix Bad Tag References in CIFix Docker "tag does not exist" / "No such image" when tagging or pushing in CI - referencing a local image o…