mirror of https://github.com/docker/cli.git
docs/extend: fix broken link and some markdown touch-ups
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
590f3271ef
commit
a968359e08
|
@ -42,14 +42,18 @@ Once running however, network driver plugins are used just like the built-in
|
||||||
network drivers: by being mentioned as a driver in network-oriented Docker
|
network drivers: by being mentioned as a driver in network-oriented Docker
|
||||||
commands. For example,
|
commands. For example,
|
||||||
|
|
||||||
|
```bash
|
||||||
$ docker network create --driver weave mynet
|
$ docker network create --driver weave mynet
|
||||||
|
```
|
||||||
|
|
||||||
Some network driver plugins are listed in [plugins](legacy_plugins.md)
|
Some network driver plugins are listed in [plugins](legacy_plugins.md)
|
||||||
|
|
||||||
The `mynet` network is now owned by `weave`, so subsequent commands
|
The `mynet` network is now owned by `weave`, so subsequent commands
|
||||||
referring to that network will be sent to the plugin,
|
referring to that network will be sent to the plugin,
|
||||||
|
|
||||||
|
```bash
|
||||||
$ docker run --network=mynet busybox top
|
$ docker run --network=mynet busybox top
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Find network plugins
|
## Find network plugins
|
||||||
|
@ -61,8 +65,8 @@ or on the third party's site.
|
||||||
|
|
||||||
## Write a network plugin
|
## Write a network plugin
|
||||||
|
|
||||||
Network plugins implement the [Docker plugin
|
Network plugins implement the [Docker plugin API](plugin_api.md) and the network
|
||||||
API](plugin_api.md) and the network plugin protocol
|
plugin protocol
|
||||||
|
|
||||||
## Network plugin protocol
|
## Network plugin protocol
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue