From 02a859b9f3fdb965f1bba0ecab160521874bca74 Mon Sep 17 00:00:00 2001 From: Mary Anthony Date: Wed, 30 Sep 2015 13:11:36 -0700 Subject: [PATCH] First pass at consolidating Removing old networking.md Updating dockernetworks.md with images Adding information on network plugins Adding blurb about links to docker networking Updating the working documentation Adding Overlay Getting Started Downplaying links by removing refs/examples, adding refs/examples for network. Updating getting started to reflect networks not links Pulling out old network material Updating per discussion with Madhu to add Default docs section Updating with bridge default Fix bad merge Updating with new cluster-advertise behavior Update working and NetworkSettings examples Correcting example for default bridge discovery behavior Entering comments Fixing broken Markdown Syntax Updating with comments Updating all the links Signed-off-by: Mary Anthony --- docs/extend/plugins.md | 5 +- docs/extend/plugins_network.md | 49 +++--- docs/reference/builder.md | 88 +++++------ docs/reference/commandline/attach.md | 2 +- docs/reference/commandline/daemon.md | 15 +- docs/reference/commandline/inspect.md | 6 +- docs/reference/commandline/network_connect.md | 2 +- docs/reference/commandline/network_create.md | 4 +- .../commandline/network_disconnect.md | 2 +- docs/reference/commandline/network_inspect.md | 2 +- docs/reference/commandline/network_ls.md | 2 +- docs/reference/commandline/network_rm.md | 2 +- docs/reference/commandline/run.md | 80 ++++------ docs/reference/glossary.md | 11 +- docs/reference/run.md | 142 ++++++------------ experimental/README.md | 2 +- man/docker-attach.1.md | 2 +- man/docker-daemon.8.md | 5 +- man/docker-inspect.1.md | 2 +- 19 files changed, 175 insertions(+), 248 deletions(-) diff --git a/docs/extend/plugins.md b/docs/extend/plugins.md index 2ea373a2ed..4d73c8e310 100644 --- a/docs/extend/plugins.md +++ b/docs/extend/plugins.md @@ -18,9 +18,8 @@ plugins. Plugins extend Docker's functionality. They come in specific types. For example, a [volume plugin](plugins_volume.md) might enable Docker -volumes to persist across multiple Docker hosts and a -[network plugin](plugins_network.md) might provide network plumbing -using a favorite networking technology, such as vxlan overlay, ipvlan, EVPN, etc. +volumes to persist across multiple Docker hosts and a +[network plugin](plugins_network.md) might provide network plumbing. Currently Docker supports volume and network driver plugins. In the future it will support additional plugin types. diff --git a/docs/extend/plugins_network.md b/docs/extend/plugins_network.md index 335ee9d04a..b1c05558d3 100644 --- a/docs/extend/plugins_network.md +++ b/docs/extend/plugins_network.md @@ -1,7 +1,7 @@