From 26b35675655ca98183723d2d575c3e48ab6a2e14 Mon Sep 17 00:00:00 2001 From: fuzhongyun <15339891972@163.com> Date: Thu, 8 Jan 2026 13:38:45 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E9=83=A8=E7=BD=B2=E4=B8=8D?= =?UTF-8?q?=E8=BE=93=E5=87=BA=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deploy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy.sh b/deploy.sh index 16cab4a..fac3025 100644 --- a/deploy.sh +++ b/deploy.sh @@ -32,9 +32,9 @@ docker stop ${CONTAINER_NAME} docker rm -f ${CONTAINER_NAME} # 依赖服务绑定同一网络,以便相互通信 -docker network create "${NETWORK_NAME}" || true -docker network connect "${NETWORK_NAME}" excel2pic || true -docker network connect "${NETWORK_NAME}" l_ai_knowledge || true +docker network create "${NETWORK_NAME}" 2>/dev/null || true +docker network connect "${NETWORK_NAME}" excel2pic 2>/dev/null || true +docker network connect "${NETWORK_NAME}" l_ai_knowledge 2>/dev/null || true docker run -itd \ --name "${CONTAINER_NAME}" \