Search code examples
dockerboot2dockerdockerfile

Docker pull repositoryName don't work can't see public repos


So im trying to pull a fresh repository from docker, wich it seems to be pretty easy but i just can't.

Im seeing this (check image)

enter image description here

but im getting "repository not found", this is what im running.

bash-3.2$ docker pull ethaan/test
Pulling repository ethaan/test
Repository not found
bash-3.2$ 

Also im trying with Kitematic, but its kinda the same, here are som ss from kitmatic.

First the "my repos view"

enter image description here

Now when i click on "create", i got this error.

enter image description here

UPDATE

enter image description here enter image description here

Updating Start Repository email image

enter image description here

Update view from docker hub enterprise enter image description here


Solution

  • You are not able to pull it because you just don't have any tags in ethaan/test. That is, the repository is empty. Once you push a tag, you will be able to pull it.
    Just to test, try the following:
    docker pull busybox
    docker tag busybox ethaan/test:test
    docker push ethaan/test:test
    Then you will be able to pull it as:
    docker pull ethaan/test:test