mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
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:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user