summaryrefslogtreecommitdiff
path: root/libnetwork/drivers_linux.go
diff options
context:
space:
mode:
authorJana Radhakrishnan <mrjana@docker.com>2015-06-10 14:24:19 -0700
committerJana Radhakrishnan <mrjana@docker.com>2015-06-18 15:06:24 -0700
commit6e4a5725297cf5ee2a3384935f491a2db90689d3 (patch)
treec6186b3a9f72e22937fff2a0bd573d6899861c06 /libnetwork/drivers_linux.go
parent433bfc7b0c1df7305fac9a62492a174675fbae6d (diff)
downloaddocker-6e4a5725297cf5ee2a3384935f491a2db90689d3.tar.gz
Overlay driver
This commit brings in the first implementation of overlay driver which makes use of vxlan tunneling protocol to create logical networks across multiple hosts. This is very much alpha code and should be used for demo and testing purposes only. Signed-off-by: Jana Radhakrishnan <mrjana@docker.com>
Diffstat (limited to 'libnetwork/drivers_linux.go')
-rw-r--r--libnetwork/drivers_linux.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/libnetwork/drivers_linux.go b/libnetwork/drivers_linux.go
index 7de28f95eb..b8294d452e 100644
--- a/libnetwork/drivers_linux.go
+++ b/libnetwork/drivers_linux.go
@@ -5,6 +5,7 @@ import (
"github.com/docker/libnetwork/drivers/bridge"
"github.com/docker/libnetwork/drivers/host"
"github.com/docker/libnetwork/drivers/null"
+ o "github.com/docker/libnetwork/drivers/overlay"
"github.com/docker/libnetwork/drivers/remote"
)
@@ -14,6 +15,7 @@ func initDrivers(dc driverapi.DriverCallback) error {
host.Init,
null.Init,
remote.Init,
+ o.Init,
} {
if err := fn(dc); err != nil {
return err