Use proper HostConfig element which contians the proper Memory value - fixes #1766
This commit is contained in:
parent
3d79d96a1b
commit
f36666ae1d
1 changed files with 1 additions and 1 deletions
|
@ -1036,7 +1036,7 @@ class DockerManager(object):
|
|||
except ValueError as e:
|
||||
self.module.fail_json(msg=str(e))
|
||||
|
||||
actual_mem = container['Config']['Memory']
|
||||
actual_mem = container['HostConfig']['Memory']
|
||||
|
||||
if expected_mem and actual_mem != expected_mem:
|
||||
self.reload_reasons.append('memory ({0} => {1})'.format(actual_mem, expected_mem))
|
||||
|
|
Loading…
Reference in a new issue