Fix Domainname introspection

Default value needs to be extracted from the container itself,
because dockerd set Domainname value when network_mode=host.
This commit is contained in:
Nicolas Delaby 2016-04-08 11:02:05 +02:00
parent 5bc8c326ce
commit 505b5b0168

View file

@ -370,7 +370,7 @@ VALID_CREATE_OPTS = {
'domainname': {
'validator': 'string',
'path': 'Config:Domainname',
'default': '',
'get_default_from_container': True,
},
'interactive': {
'api_name': 'stdin_open',