We have deployed Sonatype Nexus 3 to be used as our internal artifact repository, and it works GREAT... Now that we have completed our proof-of-concept in our staging environment, we have deployed 2 additional Nexus servers in some of our remote networks in order to reduce bandwidth utilization across the WAN. So, on the "satellite" nexus servers, I have created a Proxy Docker repo which is intended to proxy our primary Nexus server. The problem I am having is that when I attempt to pull a container image from one of the satellite Nexus repos, it cannot find any of the containers. When I instead us docker search
, I can see the containers but they are listed under the wrong hostname!!
docker search --limit 50 satellite.mycompany.com/mycontainer
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
primary.mycompany.com/mycontainer:0.0.1 0
primary.mycompany.com/mycontainer:0.0.2 0
primary.mycompany.com/mycontainer:0.0.3 0
primary.mycompany.com/mycontainer:0.0.4 0
primary.mycompany.com/mycontainer:latest 0
Does anyone know how I can resolve this?