mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
make binds a list instead of a dict (to prevent overwriting when copying the same file to two places) (#2294)
This commit is contained in:
parent
165f48717a
commit
32c744e82a
1 changed files with 3 additions and 3 deletions
|
@ -699,7 +699,7 @@ class DockerManager(object):
|
||||||
self.binds = None
|
self.binds = None
|
||||||
self.volumes = None
|
self.volumes = None
|
||||||
if self.module.params.get('volumes'):
|
if self.module.params.get('volumes'):
|
||||||
self.binds = {}
|
self.binds = []
|
||||||
self.volumes = []
|
self.volumes = []
|
||||||
vols = self.module.params.get('volumes')
|
vols = self.module.params.get('volumes')
|
||||||
for vol in vols:
|
for vol in vols:
|
||||||
|
@ -717,7 +717,7 @@ class DockerManager(object):
|
||||||
self.module.fail_json(msg='invalid bind mode ' + parts[2])
|
self.module.fail_json(msg='invalid bind mode ' + parts[2])
|
||||||
else:
|
else:
|
||||||
mode = parts[2]
|
mode = parts[2]
|
||||||
self.binds[parts[0]] = {'bind': parts[1], 'mode': mode }
|
self.binds.append((parts[0], {'bind': parts[1], 'mode': mode}))
|
||||||
else:
|
else:
|
||||||
self.module.fail_json(msg='volumes support 1 to 3 arguments')
|
self.module.fail_json(msg='volumes support 1 to 3 arguments')
|
||||||
|
|
||||||
|
@ -1370,7 +1370,7 @@ class DockerManager(object):
|
||||||
|
|
||||||
expected_binds = set()
|
expected_binds = set()
|
||||||
if self.binds:
|
if self.binds:
|
||||||
for host_path, config in self.binds.iteritems():
|
for host_path, config in self.binds:
|
||||||
if isinstance(config, dict):
|
if isinstance(config, dict):
|
||||||
container_path = config['bind']
|
container_path = config['bind']
|
||||||
mode = config['mode']
|
mode = config['mode']
|
||||||
|
|
Loading…
Reference in a new issue