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)
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"
Now when i click on "create", i got this error.
UPDATE
Updating Start Repository email image
Update view from docker hub enterprise
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