Docker pull denied

PS C:\Users\name> docker pull work Using default tag: latest What’s next: View a summary of image vulnerabilities and recommendations → docker scout quickview work Error response from daemon: pull access denied for work, repository does not exist or may require 'docker login

It seems that https://hub.docker.com/ is down
I am unable to pull images, even when using a VPN with a US address. Accessing https://hub.docker.com/ also continuously results in an error.

Doesn’t look like a general problem:

I wouldn’t be surprised if vpn endpoints would be blocked, as they would allow bypassing us embargo restrictions. Note: this is not an official statement from Docker Inc, it is just a guess of mine.

Hi Zhaocrazy , thank you your response. but I already logged in to the docker hub. but its seems the same error . pull access denied . is any solution how to pull the images ? Thank you

Please share the exact pull command, and let us know whether it’s a private repository or not.

docker pull work
Using default tag: latest

What’s next:
View a summary of image vulnerabilities and recommendations → docker scout quickview work
Error response from daemon: pull access denied for work, repository does not exist or may require ‘docker login’ Command (docker pull work)

You try to pull an image from the non-existing repository work.

So this part applies in your situation:

Furthermore: please format your posts according How to format your forum posts

What is the solution now? How can I pull work image ? Any recommendation please?

You can not pull an image that does not exist.

You can pull any existing public image like this:

docker pull hello-world:latest

Okay , Thank you .
One more Question …
Can I run the existing Container ? Because when I work on container after that I shut down the docker . and all data is lost … can I run previous container without losing the data ? thank you

Containers are meant to be disposable and ephemeral by nature. If state needs to be persisted, volumes need to be mapped into the container folders that hold the persistent data, so the data is persisted outside the container.

Please share the exact commands you use, so we can actually get an idea of what you do and how you do it. Also, we need to know which container folder(s) hold state that needs persisting. Once you shared the information, we might be able to help.

I am running the docker run -it work . its run the work images with the container .
for example when i run this command i get a container ID (c5bf9298e6d6) . and when i complete work i shut down the docker . i want to run again this container (c5bf9298e6d6) . i am not able to do this. i want to run same container on the next day . without losing any data .

I asked you to format your post according our guidelines, but you keep on ignoring that request. There is a reason why I asked for it: people stop responding if posts are unnecessarily harder to read due to no or improper formatting.

Furthermore, I not just asked you about the exact command, I also asked which container folder needs persistence… I am missing the response in your last post.

Give the shared details, the only thing I can do is to recommend learning about docker basics and concepts:

Good luck!