mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #2525 from dotcloud/fix_hostnames
Fix regression in /etc/hosts
This commit is contained in:
commit
342bd43b76
1 changed files with 1 additions and 1 deletions
|
@ -304,7 +304,7 @@ func ParseRun(args []string, capabilities *Capabilities) (*Config, *HostConfig,
|
||||||
}
|
}
|
||||||
|
|
||||||
config := &Config{
|
config := &Config{
|
||||||
Hostname: *flHostname,
|
Hostname: hostname,
|
||||||
Domainname: domainname,
|
Domainname: domainname,
|
||||||
PortSpecs: nil, // Deprecated
|
PortSpecs: nil, // Deprecated
|
||||||
ExposedPorts: ports,
|
ExposedPorts: ports,
|
||||||
|
|
Loading…
Reference in a new issue