Private Docker Registry Cannot Find Tags When Pulling

I have setup samalba / docker-registry from github source code, following the official instructions, everything seems to work fine during installation, but when it comes to popping previously captured images, I get some errors, let me explain:

I have an ubuntu: 12.04 image on my development machine and I created a Docker file to create a basic image for my ubuntu: 12.04 based company to create this image. I run this command: (docker-index. My.com is my private repository)

docker build -t docker-index.my.com/base .

or this one:

docker build -t docker-index.my.com/base:1.0 .

to enter the images that I use:

docker push docker-index.my.com/base:1.0

with or without version tag (: 1.0)

On another PC, when I try to somehow pull these images from a private repository, I get the following:

docker run -i -t docker-index.my.com/base /bin/bash

which outputs:

Unable to find image 'docker-index.my.com/base' locally
Pulling repository docker-index.my.com/base
2014/04/22 09:00:38 Error: No such image: docker-index.my.com/base (tag: latest)

. , docker-, , , , , , , , . - ? , / ?

+4
1

, . , , : myhost: 5000/myrepo/myimage (, , : X.X ).

"docker-index.my.com/base" , Docker , .

0

Source: https://habr.com/ru/post/1537564/


All Articles