mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
fix exception when an image has no name
This prevents an exception from occurring when an image has no name. While images normally have names it is possible, at least on older versions of Docker, for an image to "lose" its name during a failed `docker rm`.
This commit is contained in:
committed by
Brian Coca
parent
df49952c48
commit
5aac2a4240
@@ -349,7 +349,7 @@ class AnsibleDockerClient(Client):
|
||||
try:
|
||||
for container in self.containers(all=True):
|
||||
self.log("testing container: %s" % (container['Names']))
|
||||
if search_name in container['Names']:
|
||||
if isinstance(container['Names'], list) and search_name in container['Names']:
|
||||
result = container
|
||||
break
|
||||
if container['Id'].startswith(name):
|
||||
|
||||
Reference in New Issue
Block a user