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:
Fabian von Feilitzsch 2016-04-12 16:01:45 -04:00 committed by René Moser
parent 1c01e826d6
commit edc8698c14

View file

@ -695,7 +695,7 @@ class DockerManager(object):
self.binds = None
self.volumes = None
if self.module.params.get('volumes'):
self.binds = {}
self.binds = []
self.volumes = []
vols = self.module.params.get('volumes')
for vol in vols:
@ -713,7 +713,7 @@ class DockerManager(object):
self.module.fail_json(msg='invalid bind mode ' + parts[2])
else:
mode = parts[2]
self.binds[parts[0]] = {'bind': parts[1], 'mode': mode }
self.binds.append((parts[0], {'bind': parts[1], 'mode': mode}))
else:
self.module.fail_json(msg='volumes support 1 to 3 arguments')
@ -1366,7 +1366,7 @@ class DockerManager(object):
expected_binds = set()
if self.binds:
for host_path, config in self.binds.iteritems():
for host_path, config in self.binds:
if isinstance(config, dict):
container_path = config['bind']
mode = config['mode']