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

Update work-with-networks.md

The value of the Subnet and Gateway properties didn't match the command-line argument.

Signed-off-by: David M. Karr <davidmichaelkarr@gmail.com>
This commit is contained in:
David M. Karr (fullname at gmail.com) 2016-06-22 09:36:30 -07:00 committed by David M. Karr
parent b2da02dc7e
commit a54c3fbb8a

View file

@ -208,8 +208,8 @@ $ docker network inspect isolated_nw
"Driver": "default",
"Config": [
{
"Subnet": "172.21.0.0/16",
"Gateway": "172.21.0.1/16"
"Subnet": "172.25.0.0/16",
"Gateway": "172.25.0.1/16"
}
]
},