1
0
mirror of https://github.com/docker/cli.git synced 2026-01-15 07:40:57 +03:00

Merge pull request #19622 from r4j4h/quick-doc-fix

Correcting `overlay` -> `bridge` driver in run.md
Upstream-commit: 037d159981c8f8d79f8f445df502527e635d525c
Component: engine
This commit is contained in:
Sebastiaan van Stijn
2016-01-24 00:42:36 -08:00

View File

@@ -409,7 +409,7 @@ The following example creates a network using the built-in `bridge` network
driver and running a container in the created network
```
$ docker network create -d overlay my-net
$ docker network create -d bridge my-net
$ docker run --net=my-net -itd --name=container3 busybox
```