mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
binds dict if not specified should remain to none otherwise docker-py will try to create a new host config and all volume and ports binds are lost. config should be done at the creation of the container not when we start it
This commit is contained in:
parent
3ca35d1ec3
commit
a0fed313fa
@ -873,11 +873,9 @@ def start(container,
|
||||
|
||||
salt '*' docker.start <container id>
|
||||
'''
|
||||
if not binds:
|
||||
binds = {}
|
||||
|
||||
if not isinstance(binds, dict):
|
||||
raise SaltInvocationError('binds must be formatted as a dictionary')
|
||||
if binds:
|
||||
if not isinstance(binds, dict):
|
||||
raise SaltInvocationError('binds must be formatted as a dictionary')
|
||||
|
||||
client = _get_client()
|
||||
status = base_status.copy()
|
||||
|
Loading…
Reference in New Issue
Block a user