Home > other >  Docker - unable to find the latest image in the local
Docker - unable to find the latest image in the local

Time:12-31

When I run the docker ps, I can see the following image of running:

6 ec29fa046f0

But when I do docker run -i 6 ec29fa046f0:

Unable to find the image '6 ec29fa046f0: latest locally
Pulling the repository docker. IO/library/6 ec2af9064f0
Docker: Error: the image library/6 ec29fa046f0: latest not found.

So how do you see the image in the docker ps, but I can't run it locally?

CodePudding user response:

You can see from the image start running container identifier. You can run through the docker images to view the images. You can also by issuing docker inspect "identifier" to check the container using images

CodePudding user response:

Docker the run command to boot IMAGE - it at the back of the parameters for the IMAGE ID, and your 6 ec29fa046f0 for container ID, do you want to separate container and the mirror to see this problem again
  • Related