Merge pull request #1920 from ilya-epifanov/devel

fixed memory_limit for docker api version  >= 1.19
This commit is contained in:
Toshio Kuratomi 2015-08-20 09:03:54 -07:00
commit c6d09d8f8d

View file

@ -1428,7 +1428,7 @@ class DockerManager(object):
if api_version < 1.19:
params['mem_limit'] = mem_limit
else:
params['host_config']['mem_limit'] = mem_limit
params['host_config']['Memory'] = mem_limit
def do_create(count, params):