Docker Networking
Go to file
Madhu Venugopal 3daf672705 Merge pull request #354 from aboch/docker1.7.0_integ
Interface Statistics() API
2015-06-30 17:13:21 -07:00
Godeps Updating to latest netns to fix amd64 / RPI issues 2015-06-30 15:27:12 -07:00
api Added a catch-all root hierarchy for the API path 2015-05-23 12:20:30 -07:00
client UI formatting applied on top of Experimental Service PR 2015-05-23 16:00:42 -07:00
cmd Added a catch-all root hierarchy for the API path 2015-05-23 12:20:30 -07:00
docs Merge pull request #153 from nerdalert/brent-link-fix 2015-05-21 01:39:28 -07:00
driverapi Modify driver Join api to only allow dst prefix 2015-05-21 20:17:44 +00:00
drivers Honor driver side resolv.conf file 2015-06-30 13:50:32 -07:00
etchosts Remove pkg directory 2015-05-16 16:12:13 -07:00
ipallocator Simplify the code in the RegisterSubnet method of ipallocator. 2015-05-12 00:44:34 +00:00
iptables Fixed the tests. 2015-06-16 11:23:13 -07:00
netlabel Remove pkg directory 2015-05-16 16:12:13 -07:00
netutils Move network types to types package 2015-05-20 20:28:46 +00:00
options Remove pkg directory 2015-05-16 16:12:13 -07:00
portallocator Do not warn in packages 2015-06-02 16:28:36 -07:00
portmapper Add dummy proxy on port map 2015-05-22 12:38:28 -07:00
resolvconf Remove pkg directory 2015-05-16 16:12:13 -07:00
sandbox Interface Statistics() API 2015-06-30 16:27:06 -07:00
test/integration Initial bats based integration tests for testing daemon network configs 2015-04-25 07:33:48 -07:00
types Provide interface to categorize errors 2015-05-20 22:29:29 -07:00
.gitignore Create a build image to avoid install-deps every time 2015-05-11 21:17:12 +01:00
LICENSE
MAINTAINERS Add MAINTAINERS 2015-04-01 14:43:06 +01:00
Makefile Moved all the service commands under experimental build tag 2015-05-23 13:05:48 -07:00
README.md Driver api refactor 2015-05-18 22:36:00 +00:00
ROADMAP.md Updated Design Document 2015-05-06 13:38:16 -07:00
circle.yml Report Code Coverage and Add Status Badges 2015-04-14 16:19:55 +01:00
controller.go Add support to trigger immediate garbage collection 2015-06-05 14:46:46 -07:00
drivers.go Make driver packages register themselves via DriverCallback 2015-05-11 19:00:06 +01:00
endpoint.go Merge pull request #354 from aboch/docker1.7.0_integ 2015-06-30 17:13:21 -07:00
endpoint_info.go Modify driver Join api to only allow dst prefix 2015-05-21 20:17:44 +00:00
error.go Provide interface to categorize errors 2015-05-20 22:29:29 -07:00
errors_test.go Provide interface to categorize errors 2015-05-20 22:29:29 -07:00
libnetwork_internal_test.go Make driver packages register themselves via DriverCallback 2015-05-11 19:00:06 +01:00
libnetwork_test.go Merge pull request #354 from aboch/docker1.7.0_integ 2015-06-30 17:13:21 -07:00
network.go Fix miscellaneaus data races 2015-05-28 23:29:21 +00:00
system.go

README.md

libnetwork - networking for containers

Circle CI Coverage Status GoDoc

Libnetwork provides a native Go implementation for connecting containers

The goal of libnetwork is to deliver a robust Container Network Model that provides a consistent programming interface and the required network abstractions for applications.

NOTE: libnetwork project is under heavy development and is not ready for general use.

Design

Please refer to the design for more information.

Using libnetwork

There are many networking solutions available to suit a broad range of use-cases. libnetwork uses a driver / plugin model to support all of these solutions while abstracting the complexity of the driver implementations by exposing a simple and consistent Network Model to users.

        // Create a new controller instance
        controller := libnetwork.New()

        // Select and configure the network driver
        networkType := "bridge"

        driverOptions := options.Generic{}
        genericOption := make(map[string]interface{})
        genericOption[netlabel.GenericData] = driverOptions
        err := controller.ConfigureNetworkDriver(networkType, genericOption)
        if err != nil {
                return
        }

        // Create a network for containers to join.
        // NewNetwork accepts Variadic optional arguments that libnetwork and Drivers can make of
        network, err := controller.NewNetwork(networkType, "network1")
        if err != nil {
                return
        }

        // For each new container: allocate IP and interfaces. The returned network
        // settings will be used for container infos (inspect and such), as well as
        // iptables rules for port publishing. This info is contained or accessible
        // from the returned endpoint.
        ep, err := network.CreateEndpoint("Endpoint1")
        if err != nil {
                return
        }

        // A container can join the endpoint by providing the container ID to the join
        // api which returns the sandbox key which can be used to access the sandbox
        // created for the container during join.
        // Join acceps Variadic arguments which will be made use of by libnetwork and Drivers
        _, err = ep.Join("container1",
                libnetwork.JoinOptionHostname("test"),
                libnetwork.JoinOptionDomainname("docker.io"))
        if err != nil {
                return
        }

		// libentwork client can check the endpoint's operational data via the Info() API
		epInfo, err := ep.DriverInfo()
		mapData, ok := epInfo[netlabel.PortMap]
		if ok {
			portMapping, ok := mapData.([]netutils.PortBinding)
			if ok {
				fmt.Printf("Current port mapping for endpoint %s: %v", ep.Name(), portMapping)
			}
		}

Current Status

Please watch this space for updates on the progress.

Currently libnetwork is nothing more than an attempt to modularize the Docker platform's networking subsystem by moving it into libnetwork as a library.

Future

Please refer to roadmap for more information.

Contributing

Want to hack on libnetwork? Docker's contributions guidelines apply.

Code and documentation copyright 2015 Docker, inc. Code released under the Apache 2.0 license. Docs released under Creative commons.