Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Unable to find image 'hello-world/hello-world-python:0.0.0.RELEASE' locally

I am using docker. And when I do this: docker images. I see this:

hello-world/hello-world-python   0.0.2.REALEASE   938e41524586   4 hours ago   91.1MB
in28min/hello-world-nodejs       0.0.1.RELEASE    014fb7759606   2 years ago   99.5MB

But when I try to start the container with this command:

docker run -p 5000:5000 -d hello-world/hello-world-python:0.0.0.RELEASE

I get this error:

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

Unable to find image ‘hello-world/hello-world-python:0.0.0.RELEASE’
locally docker: Error response from daemon: pull access denied for
hello-world/hello-world-python, repository does not exist or may
require ‘docker login’: denied: requested access to the resource is
denied. See ‘docker run –help’.

So my question is: how can I run this?

>Solution :

Your tag is different , the one you downloaded shows 0.0.2.RELEASE and one you are trying to run is 0.0.0.RELEASE . so change the command to :
docker run -p 5000:5000 -d hello-world/hello-world-python:0.0.2.RELEASE

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading