BiltiuLena
BiltiuLena

Reputation: 93

Error: Status 404 trying to push repository busybox

I tried to push signed images from a machine (A) to a registry on another machine (B).

docker tag busybox:latest ubuntu:5005/busybox:latest

docker push ubuntu:5005/busybox:latest

The push refers to a repository [ubuntu:5005/busybox] .... Error: Status 404 trying to push repository busybox ... .

telnet ubuntu 5005

Trying 127.0.1.1... telnet: Unable to connect to remote host: Connection refused

Are there any extra settings in order to push signed images on a diff machine. Or just to push without signing? Thanks a lot!

Upvotes: 0

Views: 1012

Answers (2)

enderland
enderland

Reputation: 14185

If you can't reach this, make sure your ports are properly exposed on the machine and that your networking resolves "ubuntu" to your newest machine correctly.

It's probable Machine A has no rule allowing ubuntu to resolve to <machine B>.

Make sure you docker login as well once you verify this, too.

Upvotes: 1

Related Questions