docker
registry
ai_generated
true
Error response from daemon: manifest for image:tag not found: manifest unknown
ID: docker/manifest-unknown
95%Fix Rate
96%Confidence
50Evidence
2023-01-01First Seen
Version Compatibility
| Version | Status | Introduced | Deprecated | Notes |
|---|---|---|---|---|
| 24 | active | — | — | — |
Root Cause
The specified image tag does not exist in the registry.
genericWorkarounds
-
93% success Check available tags: docker manifest inspect <image> or visit the registry's web UI
Verify the exact tag name — tags are case-sensitive
-
88% success For multi-arch images, specify the platform: docker pull --platform linux/amd64 <image:tag>
Some tags only exist for specific architectures
Dead Ends
Common approaches that don't work:
-
Pulling without specifying a tag (defaults to :latest)
50% fail
latest tag may not exist; many repos don't publish it
-
Switching Docker registries
60% fail
The image might exist in the specified registry but with a different tag
Error Chain
Frequently confused with: