fixed memory_limit for docker api version >= 1.19
This commit is contained in:
parent
4cd2fcf917
commit
cbbf284a74
1 changed files with 1 additions and 1 deletions
|
@ -1446,7 +1446,7 @@ class DockerManager(object):
|
||||||
if api_version < 1.19:
|
if api_version < 1.19:
|
||||||
params['mem_limit'] = mem_limit
|
params['mem_limit'] = mem_limit
|
||||||
else:
|
else:
|
||||||
params['host_config']['mem_limit'] = mem_limit
|
params['host_config']['Memory'] = mem_limit
|
||||||
|
|
||||||
|
|
||||||
def do_create(count, params):
|
def do_create(count, params):
|
||||||
|
|
Loading…
Reference in a new issue