From a54c3fbb8aa024c477864a0614506da3ea185839 Mon Sep 17 00:00:00 2001 From: "David M. Karr (fullname at gmail.com)" Date: Wed, 22 Jun 2016 09:36:30 -0700 Subject: [PATCH] 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 --- docs/userguide/networking/work-with-networks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/userguide/networking/work-with-networks.md b/docs/userguide/networking/work-with-networks.md index ead194e9d5..66c6bd1a63 100644 --- a/docs/userguide/networking/work-with-networks.md +++ b/docs/userguide/networking/work-with-networks.md @@ -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" } ] },