Fix env splitting in docker module
ENV variable value could contain '=' (for example mysql://host/db?pool=10)
This commit is contained in:
parent
8c2d409467
commit
f9e6db7886
1 changed files with 1 additions and 1 deletions
|
@ -384,7 +384,7 @@ class DockerManager:
|
|||
|
||||
self.env = None
|
||||
if self.module.params.get('env'):
|
||||
self.env = dict(map(lambda x: x.split("="), self.module.params.get('env')))
|
||||
self.env = dict(map(lambda x: x.split("=", 1), self.module.params.get('env')))
|
||||
|
||||
# connect to docker server
|
||||
docker_url = urlparse(module.params.get('docker_url'))
|
||||
|
|
Loading…
Reference in a new issue