mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[cloud][docker] Insensitive search for docker port publishing (#21579)
This commit is contained in:
parent
7b6c992c46
commit
d64d38a1f4
1 changed files with 1 additions and 1 deletions
|
@ -766,7 +766,7 @@ class TaskParameters(DockerBaseClass):
|
|||
|
||||
self.publish_all_ports = False
|
||||
self.published_ports = self._parse_publish_ports()
|
||||
if self.published_ports == 'all':
|
||||
if self.published_ports in ('all', 'ALL'):
|
||||
self.publish_all_ports = True
|
||||
self.published_ports = None
|
||||
|
||||
|
|
Loading…
Reference in a new issue