Extract only the hostname part from self.registry This is needed for update_dockercfg() to register only the host part of a specified registry URL in the .dockercfg.
This commit is contained in:
parent
c42d94edd1
commit
e998090d52
1 changed files with 4 additions and 0 deletions
|
@ -139,6 +139,10 @@ class DockerLoginManager:
|
|||
if self.reauth:
|
||||
self.log.append("Enforcing reauthentification")
|
||||
|
||||
# Extract hostname part from self.registry if url was specified.
|
||||
registry_url = urlparse(self.registry)
|
||||
self.registry = registry_url.netloc or registry_url.path
|
||||
|
||||
# Connect to registry and login if not already logged in or reauth is enforced.
|
||||
try:
|
||||
self.response = self.client.login(
|
||||
|
|
Loading…
Reference in a new issue