From 77db97d59513e16e4ee2abe6fcfa130d453604bd Mon Sep 17 00:00:00 2001 From: Pawel Date: Sat, 11 Sep 2021 22:52:44 +0200 Subject: [PATCH] Use private network address for default-address-pools setting in daemon.json example Signed-off-by: Pawel (cherry picked from commit 6482f3f9b043817d975757a3b6fd5e295ee22676) Signed-off-by: Sebastiaan van Stijn --- docs/reference/commandline/dockerd.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/commandline/dockerd.md b/docs/reference/commandline/dockerd.md index e3414168e0..ea480b2950 100644 --- a/docs/reference/commandline/dockerd.md +++ b/docs/reference/commandline/dockerd.md @@ -1360,11 +1360,11 @@ This is a full example of the allowed configuration options on Linux: "debug": true, "default-address-pools": [ { - "base": "172.80.0.0/16", + "base": "172.30.0.0/16", "size": 24 }, { - "base": "172.90.0.0/16", + "base": "172.31.0.0/16", "size": 24 } ],