1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Correcting overlay -> bridge driver in run.md

Correcting `overlay` -> `bridge` driver in run.md to match the preceding paragraph.

Signed-off-by: Jasmine Hegman <jasmine@jhegman.com>
This commit is contained in:
Jasmine Hegman 2016-01-23 23:43:24 -07:00
parent 73a5393bf3
commit ae5fce9fe0

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
```