mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Do not manage ipv6 for host mode containers
Signed-off-by: Alessandro Boch <aboch@docker.com>
This commit is contained in:
parent
7ee02a3176
commit
cddead94d2
1 changed files with 5 additions and 3 deletions
|
@ -222,9 +222,11 @@ func NewSandbox(key string, osCreate, isRestore bool) (Sandbox, error) {
|
|||
}
|
||||
|
||||
// As starting point, disable IPv6 on all interfaces
|
||||
err = setIPv6(n.path, "all", false)
|
||||
if err != nil {
|
||||
logrus.Warnf("Failed to disable IPv6 on all interfaces on network namespace %q: %v", n.path, err)
|
||||
if !n.isDefault {
|
||||
err = setIPv6(n.path, "all", false)
|
||||
if err != nil {
|
||||
logrus.Warnf("Failed to disable IPv6 on all interfaces on network namespace %q: %v", n.path, err)
|
||||
}
|
||||
}
|
||||
|
||||
if err = n.loopbackUp(); err != nil {
|
||||
|
|
Loading…
Reference in a new issue