Merge pull request #1540 from m-kostrzewa/remote_network_driver_windows
Register remote network driver on Windows.
This commit is contained in:
commit
ae539e03a8
1 changed files with 2 additions and 0 deletions
|
@ -2,6 +2,7 @@ package libnetwork
|
|||
|
||||
import (
|
||||
"github.com/docker/libnetwork/drivers/null"
|
||||
"github.com/docker/libnetwork/drivers/remote"
|
||||
"github.com/docker/libnetwork/drivers/windows"
|
||||
"github.com/docker/libnetwork/drivers/windows/overlay"
|
||||
)
|
||||
|
@ -10,6 +11,7 @@ func getInitializers() []initializer {
|
|||
return []initializer{
|
||||
{null.Init, "null"},
|
||||
{overlay.Init, "overlay"},
|
||||
{remote.Init, "remote"},
|
||||
{windows.GetInit("transparent"), "transparent"},
|
||||
{windows.GetInit("l2bridge"), "l2bridge"},
|
||||
{windows.GetInit("l2tunnel"), "l2tunnel"},
|
||||
|
|
Loading…
Add table
Reference in a new issue