docker
image_error
ai_generated
true
Error response from daemon: manifest for image:tag not found
ID: docker/manifest-not-found
88%Fix Rate
90%Confidence
50Evidence
2023-01-01First Seen
Version Compatibility
| Version | Status | Introduced | Deprecated | Notes |
|---|---|---|---|---|
| 27 | active | — | — | — |
Root Cause
Docker image tag doesn't exist in registry. Common after version bumps or architecture mismatches.
genericWorkarounds
-
95% success Check available tags on Docker Hub or registry and use exact version
docker manifest inspect image:tag
Sources: https://docs.docker.com/reference/cli/docker/manifest/inspect/
-
88% success Verify image name spelling and registry URL (docker.io vs ghcr.io vs ecr)
docker.io vs ghcr.io vs ecr
Sources: https://docs.docker.com/reference/cli/docker/image/pull/
Dead Ends
Common approaches that don't work:
-
Pull with --platform flag blindly
55% fail
May pull wrong arch image causing exec format error at runtime
-
Use :latest tag instead
60% fail
latest is mutable, unpredictable, and may not exist for all images
Error Chain
Leads to: