From d9ef4f2986b93b64289d858c55b3bee67804c444 Mon Sep 17 00:00:00 2001 From: Kenjiro Nakayama Date: Sun, 15 Nov 2015 17:11:27 +0900 Subject: [PATCH] Fix invalid proxy setting example Signed-off-by: Kenjiro Nakayama --- docs/articles/systemd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/articles/systemd.md b/docs/articles/systemd.md index 1722a279a6..c839ff30d2 100644 --- a/docs/articles/systemd.md +++ b/docs/articles/systemd.md @@ -134,7 +134,7 @@ that adds the `HTTP_PROXY` environment variable: If you have internal Docker registries that you need to contact without proxying you can specify them via the `NO_PROXY` environment variable: - Environment="HTTP_PROXY=http://proxy.example.com:80/" "NO_PROXY=localhost,127.0.0.0/8,docker-registry.somecorporation.com" + Environment="HTTP_PROXY=http://proxy.example.com:80/" "NO_PROXY=localhost,127.0.0.1,docker-registry.somecorporation.com" Flush changes: