hub-feedback icon indicating copy to clipboard operation
hub-feedback copied to clipboard

Error response from daemon: manifest for ansible/ansible:latest not found

Open kenorb opened this issue 7 years ago • 14 comments

Repro steps:

  1. Run: docker pull ansible/ansible

The above command results in:

Using default tag: latest
Error response from daemon: manifest for ansible/ansible:latest not found

I understand I should use a different tag, but this command appears on the project page at https://hub.docker.com/r/ansible/ansible/ in the "Docker Pull Command" block.

Should the command be corrected on that page?

kenorb avatar Apr 09 '18 20:04 kenorb

Look at the tags available - https://hub.docker.com/r/ansible/ansible/tags/

Based on the tag you want, here is an example of pulling default.

docker pull ansible/ansible:default

The documentation could be clearer IMHO.

nickwinn avatar May 22 '18 16:05 nickwinn

Hi @nickwinn , This seems to be an issue with other images as well ex:-

  • Run

    docker pull kindest/node

  • Output

    Error response from daemon: manifest for kindest/node:latest not found: manifest unknown: manifest unknown

I tried using default tag as well but no success

  • Run

    docker pull kindest/node:default

  • Output

    Error response from daemon: manifest for kindest/node:default not found: manifest unknown: manifest unknown

shubhamsharma088 avatar Aug 29 '19 15:08 shubhamsharma088

Error response from daemon: manifest for zuo/cheers2019:latest not found: manifest unknown: manifest unknown

zuojunfei avatar Dec 15 '19 20:12 zuojunfei

Check the tags in - https://hub.docker.com/r/ansible/ansible/tags And run the latest command - docker pull ansible/ansible:ubuntu1404

marcos-vinicius-dev avatar Dec 21 '19 03:12 marcos-vinicius-dev

The documentation could be clearer IMHO.

Cannot add more to that! Why not say "tag is not found, please check the registry or fix the tag", but instead some scary message about manifests is printed which confuses people for years already!

okainov avatar Jul 30 '20 11:07 okainov

no tag bug

➜  ~ docker pull xgqfrms/node.js
Using default tag: latest
Error response from daemon: manifest for xgqfrms/node.js:latest not found: manifest unknown: manifest unknown

➜  ~ docker pull xgqfrms/node.js:default
Error response from daemon: manifest for xgqfrms/node.js:default not found: manifest unknown: manifest unknown



xgqfrms avatar Sep 16 '20 19:09 xgqfrms

This is not an issue with docker hub. This is an issue with documentation provided by the group working on ansible itself.

colbygk avatar Oct 15 '20 19:10 colbygk

Well, https://hub.docker.com/r/travisci/ci-ubuntu-1804 says docker pull travisci/ci-ubuntu-1804 which leads to the same error.

dfaure avatar Dec 26 '20 10:12 dfaure

image I am getting the same error while running from jenkins. Although, i am able to run container manually from ec-2. Any help woud be appreciable.

morapost avatar Jan 14 '21 18:01 morapost

image SS from docker Hub.

morapost avatar Jan 14 '21 18:01 morapost

The error is because of wrong tag. check the tag in docker hub like 1.0, 2.0 or something, using default worked for me.

Lakshmi8080 avatar Jun 26 '21 05:06 Lakshmi8080

https://programmersought.com/article/24703176053/

sinan-lab avatar Dec 03 '21 13:12 sinan-lab

Look at the tags available - https://hub.docker.com/r/ansible/ansible/tags/

Based on the tag you want, here is an example of pulling default.

docker pull ansible/ansible:default

The documentation could be clearer IMHO.

well done.

lancnet avatar Jan 18 '23 17:01 lancnet

This is not an issue with docker hub. This is an issue with documentation provided by the group working on ansible itself.

I would partly disagree with that. The docker pull command is "knowingly" trying to fetch the image tagged latest. So for images without such tag, a plain docker pull $x/$y could be avoided, or some hint (e.g. warning sign) should show up.

LukasGibeh avatar Mar 31 '23 17:03 LukasGibeh