I have set up a docker proxy repo against an internal docker registry being hosted in our company. This proxy has it's own authentication realm (tied to LDAP) when you want to push/pull. The authentication methods differ compared to my nexus3 instance (our nexus uses company email as username and internal docker registry uses unixid, same password though)
What would be the proper way to pass the right credentials when doing docker login to authenticate against the proxied docker registry?
if i try doing
docker login
nexusdev.mycompany.com:18501 and use the internal registry credentials, I cannot login. I have to use my nexus credentials to log in.
- Daniel