Matched signals
- manifest not found
- tag does not exist
- repository does not exist
- image not found
- no such image
- invalid reference format
- manifest unknown
- manifest for
Docker manifest not found or bad image tag
What this failure means
Docker could not pull an image because the tag does not exist in the registry, the manifest is missing, or the image reference is malformed.
Symptoms
Faultline looks for one or more of these log fragments:
manifest not found
tag does not exist
repository does not exist
image not found
no such image
invalid reference format
manifest unknown
manifest for
Diagnosis
Docker tried to pull an image from a registry (Docker Hub, ECR, GCR, etc.) but the tag or digest does not exist, the manifest is unavailable, or the image reference contains a typo.
Common causes:
- The image tag was deleted or never pushed.
- The image name or tag contains a typo.
- The registry requires authentication that is not configured.
- The image is private and the CI job lacks credentials.
- The image uses a multi‑arch manifest that is incomplete for the current platform.
Fix steps
-
Verify the image reference:
echo "Image: $IMAGE" docker manifest inspect $IMAGE 2>&1 | head -20 -
Check if the tag exists in the registry:
- For Docker Hub: visit
https://hub.docker.com/r/<org>/<image>/tags - For ECR: use
aws ecr describe-images --repository-name <repo> - For GCR: use
gcloud container images list-tags <image>
- For Docker Hub: visit
-
If the image is private, ensure credentials are available:
echo $DOCKER_PASSWORD | docker login -u $DOCKER_USERNAME --password-stdin -
If using a multi‑arch image, verify it supports your platform:
docker buildx imagetools inspect $IMAGE -
Retry with an explicit tag instead of
latest:docker pull myimage:1.2.3 -
If the image is built in a previous CI step, ensure it was pushed successfully before the pull step.
-
Check network connectivity to the registry (firewall, proxy, DNS).
Validation
docker pull <image>succeeds without “manifest not found” or “tag does not exist”.docker run --rm <image> echo okruns without image pull errors.
Why it matters
Missing images block deployments, CI builds that depend on base images, and test containers. The error often appears after deleting old tags, renaming images, or when CI jobs run before image pushes complete.
Prevention
- Use immutable tags (e.g., Git SHA, build ID) instead of
latest. - Add a pre‑flight check that verifies required images exist before starting dependent jobs.
- Keep image references in a central configuration file to avoid typos.
Try it locally
docker pull <image>
docker manifest inspect <image>
docker pull <image>
How Faultline detects it
Use faultline explain docker-manifest-not-found to see the full playbook.
faultline analyze build.log
faultline explain docker-manifest-not-found
Generated from playbooks/bundled/log/build/docker-manifest-not-found.yaml. Do not edit directly.