1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02: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:
Nathaniel Nutter 2017-01-27 16:42:10 -06:00 committed by Brian Coca
parent df49952c48
commit 5aac2a4240

View file

@ -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):