[Solved] Error response from daemon: No such image: Docker

0 min read 96 words

If you’ve run into this dreaded error:

Error response from daemon: No such image:

Then you can solve it as follows:

Step 1

Perform a docker pull -a <org/image>

Then perform a docker images -a to see what the version is.

Step 2

This issue can occur when it is trying to map tag to latest, but a specific version is explicitly listed instead.

docker tag <org>/<image>:v1 <new_org>/<image>

Make sure to replace :v1 with the specific TAG that was shown from the docker images command above.

Step 3

Now you can perform your docker push <new_org>/<image>

Tags:
Andrew
Andrew

Andrew is a visionary software engineer and DevOps expert with a proven track record of delivering cutting-edge solutions that drive innovation at Ataiva.com. As a leader on numerous high-profile projects, Andrew brings his exceptional technical expertise and collaborative leadership skills to the table, fostering a culture of agility and excellence within the team. With a passion for architecting scalable systems, automating workflows, and empowering teams, Andrew is a sought-after authority in the field of software development and DevOps.

Tags