Syntax warning fix

Signed-off-by: aiordache <anca.iordache@docker.com>
This commit is contained in:
aiordache 2020-11-19 15:38:26 +01:00
parent 27e3fa3e2e
commit a0c51be228
1 changed files with 2 additions and 6 deletions

View File

@ -334,15 +334,11 @@ class HostConfig(dict):
if dns_search:
self['DnsSearch'] = dns_search
if network_mode is 'host' and port_bindings:
if network_mode == 'host' and port_bindings:
raise host_config_incompatible_error(
'network_mode', 'host', 'port_bindings'
)
if network_mode:
self['NetworkMode'] = network_mode
elif network_mode is None:
self['NetworkMode'] = 'default'
self['NetworkMode'] = network_mode or 'default'
if restart_policy:
if not isinstance(restart_policy, dict):