Hi @rhessinger,
Our Nexus docker repository is configured to use specific port (e.g. port 8080), but this port is not exposed externally. Here's an example response returned by the Nexus endpoint:
{
"name" : "example",
"url" : "https://nexus-example/repository/example",
"online" : true,
...
"docker" : {
"v1Enabled" : false,
"forceBasicAuth" : true,
"httpPort" : 8080,
"httpsPort" : null,
"subdomain" : null
},
...
"format" : "docker",
"type" : "hosted"
}
Instead, we have a proxy server that maps a custom URL (e.g., https://nexus-docker/) to the internal Nexus port.
All Docker operations (push/pull) work correctly through this custom URL.
Could this proxy-based URL mapping affect the Docker migration feature, or is there a way to specify the external (proxy) URL for migration?
Thanks.