docker registry ai_generated true

Error response from daemon: manifest for image:tag not found: manifest unknown

ID: docker/manifest-unknown

Also available as: JSON · Markdown
95%Fix Rate
96%Confidence
50Evidence
2023-01-01First Seen

Version Compatibility

VersionStatusIntroducedDeprecatedNotes
24 active

Root Cause

The specified image tag does not exist in the registry.

generic

Workarounds

  1. 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
  2. 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:

  1. Pulling without specifying a tag (defaults to :latest) 50% fail

    latest tag may not exist; many repos don't publish it

  2. Switching Docker registries 60% fail

    The image might exist in the specified registry but with a different tag

Error Chain

Frequently confused with: