dockerd: fix typo in config for no_proxy
authorJoe Zheng <redacted>
Fri, 13 Sep 2024 09:01:31 +0000 (17:01 +0800)
committerTianling Shen <redacted>
Fri, 13 Sep 2024 10:25:22 +0000 (18:25 +0800)
the "http_proxy" here should be "no_proxy"

Signed-off-by: Joe Zheng <redacted>
utils/dockerd/Makefile
utils/dockerd/files/etc/config/dockerd

index 24556c57945364de409b085748bde6425cac260b..8d1daf292d8f2b842bf322331449e2a73ff5912d 100644 (file)
@@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=dockerd
 PKG_VERSION:=27.1.2
-PKG_RELEASE:=2
+PKG_RELEASE:=3
 PKG_LICENSE:=Apache-2.0
 PKG_LICENSE_FILES:=LICENSE
 
index 0fa4a5627df3ca431a03ee087ee27b82e2aa84c0..e3fde7caf4b4cfee8a0d57eb438486ba37407b1a 100644 (file)
@@ -26,7 +26,7 @@ config globals 'globals'
 config proxies 'proxies'
 #      option http_proxy 'http://proxy.example.com:3128'
 #      option https_proxy 'https://proxy.example.com:3129'
-#      option http_proxy '*.test.example.com,.example.org,127.0.0.0/8'
+#      option no_proxy '*.test.example.com,.example.org,127.0.0.0/8'
 
 # Docker doesn't work well out of the box with fw4. This is because Docker relies on a compatibility layer that
 # naively translates iptables rules. For the best compatibility replace the following dependencies:
git clone https://git.99rst.org/PROJECT