diff --git a/Jenkinsfile b/Jenkinsfile index 01fccfa..2706a6e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -82,7 +82,7 @@ pipeline { --driver docker-container \ --driver-opt 'env.http_proxy=http://192.168.5.200:7890' \ --driver-opt 'env.https_proxy=http://192.168.5.200:7890' \ - --driver-opt 'env.no_proxy=127.0.0.1\,localhost\,reg.nxsir.cn\,gitea.nxsir.cn\,192.168.0.0/16\,10.0.0.0/8\,172.16.0.0/12' \ + --driver-opt 'env.no_proxy=127.0.0.1,localhost,reg.nxsir.cn,gitea.nxsir.cn' \ --use fi sudo docker buildx inspect --builder ${BUILDER_NAME} --bootstrap >/dev/null @@ -95,10 +95,10 @@ pipeline { --provenance=false \ --build-arg HTTP_PROXY=http://192.168.5.200:7890 \ --build-arg HTTPS_PROXY=http://192.168.5.200:7890 \ - --build-arg NO_PROXY=127.0.0.1,localhost,reg.nxsir.cn,gitea.nxsir.cn,192.168.0.0/16,10.0.0.0/8,172.16.0.0/12 \ + --build-arg NO_PROXY=127.0.0.1,localhost,reg.nxsir.cn,gitea.nxsir.cn \ --build-arg http_proxy=http://192.168.5.200:7890 \ --build-arg https_proxy=http://192.168.5.200:7890 \ - --build-arg no_proxy=127.0.0.1,localhost,reg.nxsir.cn,gitea.nxsir.cn,192.168.0.0/16,10.0.0.0/8,172.16.0.0/12 \ + --build-arg no_proxy=127.0.0.1,localhost,reg.nxsir.cn,gitea.nxsir.cn \ -f src/LiveRecorder.WebApi/Dockerfile \ -t ${API_IMAGE_TAGGED} \ -t ${API_IMAGE_LATEST} \ @@ -118,7 +118,7 @@ pipeline { --driver docker-container \ --driver-opt 'env.http_proxy=http://192.168.5.200:7890' \ --driver-opt 'env.https_proxy=http://192.168.5.200:7890' \ - --driver-opt 'env.no_proxy=127.0.0.1\,localhost\,reg.nxsir.cn\,gitea.nxsir.cn\,192.168.0.0/16\,10.0.0.0/8\,172.16.0.0/12' \ + --driver-opt 'env.no_proxy=127.0.0.1,localhost,reg.nxsir.cn,gitea.nxsir.cn' \ --use fi sudo docker buildx inspect --builder ${BUILDER_NAME} --bootstrap >/dev/null @@ -131,10 +131,10 @@ pipeline { --provenance=false \ --build-arg HTTP_PROXY=http://192.168.5.200:7890 \ --build-arg HTTPS_PROXY=http://192.168.5.200:7890 \ - --build-arg NO_PROXY=127.0.0.1,localhost,reg.nxsir.cn,gitea.nxsir.cn,192.168.0.0/16,10.0.0.0/8,172.16.0.0/12 \ + --build-arg NO_PROXY=127.0.0.1,localhost,reg.nxsir.cn,gitea.nxsir.cn \ --build-arg http_proxy=http://192.168.5.200:7890 \ --build-arg https_proxy=http://192.168.5.200:7890 \ - --build-arg no_proxy=127.0.0.1,localhost,reg.nxsir.cn,gitea.nxsir.cn,192.168.0.0/16,10.0.0.0/8,172.16.0.0/12 \ + --build-arg no_proxy=127.0.0.1,localhost,reg.nxsir.cn,gitea.nxsir.cn \ -f frontend/Dockerfile \ --build-arg VITE_API_BASE_URL=/api \ -t ${WEB_IMAGE_TAGGED} \