From 520627a8faf6604b34188ab2af4688b60b41f37e Mon Sep 17 00:00:00 2001 From: litianxiang Date: Tue, 28 Apr 2026 16:13:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E6=B5=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/master_sellrt_build_manual.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/master_sellrt_build_manual.yaml b/.gitea/workflows/master_sellrt_build_manual.yaml index a9a8134..e431b43 100644 --- a/.gitea/workflows/master_sellrt_build_manual.yaml +++ b/.gitea/workflows/master_sellrt_build_manual.yaml @@ -82,7 +82,12 @@ jobs: RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime RUN echo 'Asia/Shanghai' > /etc/timezone ADD ./aida-seller-1.0.0.jar /app.jar - ENTRYPOINT ["java","-jar","/app.jar"] + ENTRYPOINT ["java", \ + "-Dspring.cloud.nacos.discovery.ip=18.167.251.121", \ + "-Dspring.cloud.nacos.discovery.port=10093", \ + "-Dspring.cloud.nacos.discovery.prefer-ip-address=true", \ + "-Dspring.cloud.nacos.discovery.ip-type=ipv4", \ + "-jar", "/app.jar"] EOF echo "Dockerfile内容:" cat Dockerfile