From 1ba2b9625874e8f03eba296ec9f50ab6e22f8e32 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 Upstream-commit: 6482f3f9b043817d975757a3b6fd5e295ee22676 Component: cli --- components/cli/docs/reference/commandline/dockerd.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/cli/docs/reference/commandline/dockerd.md b/components/cli/docs/reference/commandline/dockerd.md index a870c3079d8..e9c6011f96c 100644 --- a/components/cli/docs/reference/commandline/dockerd.md +++ b/components/cli/docs/reference/commandline/dockerd.md @@ -1380,11 +1380,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 } ],