Error in Docker Pull - "Layer already pulled by another client"

I am new to docker and have followed the installation instructions on my site here .

Installation completed successfully:

docker -v Docker version 1.8.1, build d12ea79 

but when i try to run

 sudo docker run hello-world 

I get the following:

 Unable to find image 'hello-world:latest' locally latest: Pulling from library/hello-world 535020c3e8ad: Pulling fs layer af340544ed62: Layer already being pulled by another client. Waiting. af340544ed62: Layer already being pulled by another client. Waiting. 

Then he continues to hang endlessly.

I tried to restart the service and my entire machine. I always get the same problem.

Any idea what causes this and how to solve it?

+4
docker pull
source share
2 answers

It seems to have resolved now. It is possible this was caused by a problem on the docker.

0
source share

This command helped me in the end on Ubuntu 14.04 ( Docker version 1.8.1, build d12ea79 ):

 sudo restart docker 
+2
source share

All Articles