mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
don't add /etc/hosts record if ip is empty (issue #1146)
Signed-off-by: Andrei Ushakov <aushakov@netflix.com>
This commit is contained in:
parent
57a91d9153
commit
e57d2f987d
1 changed files with 4 additions and 0 deletions
|
@ -90,6 +90,10 @@ func (sb *sandbox) buildHostsFile() error {
|
|||
func (sb *sandbox) updateHostsFile(ifaceIP string) error {
|
||||
var mhost string
|
||||
|
||||
if ifaceIP == "" {
|
||||
return nil
|
||||
}
|
||||
|
||||
if sb.config.originHostsPath != "" {
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue