0

I am running docker on CentOS 7 following the official documentation from https://docs.docker.com

When I try to pull a demo image I just created, I got this error:

FATA[0013] Repository not found

the error

The strange thing is that the "Number of Pulls" increases every time I try to pull it. As if every pull is successful.

number of pulls

Every time I get this same error: FATA[0013] Repository not found

So what should I do now?

Lastest Update: Problem solved. Thanks to Jerry Baker, one of the Docker Staff.

Please refer to https://forums.docker.com/t/cant-find-or-pull-public-repos-on-docker-hub/1806/6


UPDATE: I am not running docker under a http_proxy.

UPDATE 2: @user2915097 After I run docker events:

enter image description here

UPDATE 3:

My repo was not even found by docker search:

enter image description here

UPDATE 4:

docker push failed, too. I've already logged in (by docker login).

enter image description here

wings
  • 791
  • 6
  • 21

3 Answers3

0

docker pull wings27/centos-web-dev is not working because it does not have the 'latest' tag. It tries to pull the 'latest' tag by default if you do not provide any tag in your pull command.

enter image description here

Chandan Nayak
  • 10,117
  • 5
  • 26
  • 36
  • Then how can I add a tag? – wings Jun 06 '15 at 02:40
  • This might help: http://stackoverflow.com/questions/25388684/pushing-docker-image-to-dockerhub – Chandan Nayak Jun 06 '15 at 02:48
  • If you want to test, upload an image to docker hub and remove the latest tag from docker hub, you can recreate the same error/problem that you are facing. – Chandan Nayak Jun 06 '15 at 02:49
  • See my UPDATE 4 , please. – wings Jun 06 '15 at 03:42
  • Check this link: https://forums.docker.com/t/docker-push-error-fata-0001-respository-does-not-exist/1309/8, What is your docker version ? You might want to update it if not updated. – Chandan Nayak Jun 06 '15 at 04:03
  • I am using a 1.6.0 version, which is newly install using yum. In fact, it seems that I can't even find my repo on docker hub. https://registry.hub.docker.com/search?q=centos-web-dev – wings Jun 06 '15 at 04:22
  • Let us [continue this discussion in chat](http://chat.stackoverflow.com/rooms/79833/discussion-between-wings-and-chandan-nayak). – wings Jun 06 '15 at 04:42
0

Login to your docker account before accessing private repos

docker login
Code Tree
  • 2,160
  • 4
  • 26
  • 39
0

If it still helps, short answer

docker login
docker tag <image_id> wings27/centos-web-dev:<your-tag>
docker pull wings27/centos-web-dev:<your-tag> 
Peter Arboleda
  • 463
  • 3
  • 12