summaryrefslogtreecommitdiff
path: root/libnetwork/drivers_linux.go
diff options
context:
space:
mode:
authorBrent Salisbury <brent@docker.com>2016-02-16 22:15:18 -0500
committerBrent Salisbury <brent@docker.com>2016-03-02 06:22:36 -0500
commitea301133039d9852455893a4ada1ab887ebe8459 (patch)
tree78a64da0e6c8f03181478b9f6082e8389527c6b5 /libnetwork/drivers_linux.go
parenta8d59fda7514147a4d930d04e65adf24a5eb0b94 (diff)
downloaddocker-ea301133039d9852455893a4ada1ab887ebe8459.tar.gz
Added macvlan and ipvlan drivers
- Notes at: https://gist.github.com/nerdalert/c0363c15d20986633fda Signed-off-by: Brent Salisbury <brent@docker.com>
Diffstat (limited to 'libnetwork/drivers_linux.go')
-rw-r--r--libnetwork/drivers_linux.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/libnetwork/drivers_linux.go b/libnetwork/drivers_linux.go
index 4d31b986c2..91964519b6 100644
--- a/libnetwork/drivers_linux.go
+++ b/libnetwork/drivers_linux.go
@@ -3,6 +3,8 @@ package libnetwork
import (
"github.com/docker/libnetwork/drivers/bridge"
"github.com/docker/libnetwork/drivers/host"
+ "github.com/docker/libnetwork/drivers/ipvlan"
+ "github.com/docker/libnetwork/drivers/macvlan"
"github.com/docker/libnetwork/drivers/null"
"github.com/docker/libnetwork/drivers/overlay"
"github.com/docker/libnetwork/drivers/remote"
@@ -15,5 +17,7 @@ func getInitializers() []initializer {
{null.Init, "null"},
{remote.Init, "remote"},
{overlay.Init, "overlay"},
+ {macvlan.Init, "macvlan"},
+ {ipvlan.Init, "ipvlan"},
}
}