docker: Use a list instead of a dict for volumes according to the docker-py docs. Do not add host-binds to volumes list.
This commit is contained in:
parent
d8df5da49f
commit
c3f92cca21
1 changed files with 2 additions and 2 deletions
|
@ -474,13 +474,13 @@ class DockerManager(object):
|
|||
self.volumes = None
|
||||
if self.module.params.get('volumes'):
|
||||
self.binds = {}
|
||||
self.volumes = {}
|
||||
self.volumes = []
|
||||
vols = self.module.params.get('volumes')
|
||||
for vol in vols:
|
||||
parts = vol.split(":")
|
||||
# regular volume
|
||||
if len(parts) == 1:
|
||||
self.volumes[parts[0]] = {}
|
||||
self.volumes.append(parts[0])
|
||||
# host mount (e.g. /mnt:/tmp, bind mounts host's /tmp to /mnt in the container)
|
||||
elif 2 <= len(parts) <= 3:
|
||||
# default to read-write
|
||||
|
|
Loading…
Reference in a new issue