From 0f6dc2449dbe47e2725dbd75a1e14751d1dd373b Mon Sep 17 00:00:00 2001 From: gewuyou Date: Fri, 9 May 2025 08:25:24 +0800 Subject: [PATCH] =?UTF-8?q?fix(docker):=20=E4=BF=AE=E6=AD=A3=20Docker=20Co?= =?UTF-8?q?mpose=20=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新环境变量引用,使用正确的变量名 ${${DOCKER_REGISTRY_URL}} - 修正服务名称和卷名称中的大小写错误 - 统一使用小写字母以提高可读性和一致性 --- docker/docker-compose.test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docker/docker-compose.test.yml b/docker/docker-compose.test.yml index 038a5fd..c128e81 100644 --- a/docker/docker-compose.test.yml +++ b/docker/docker-compose.test.yml @@ -14,7 +14,7 @@ services: volumes: - llmx-nacos-volume:/nacos/data llmx-core-service: - image: ${Docker_REGISTRY_URL}/llmx-core-service + image: ${${DOCKER_REGISTRY_URL}}/llmx-core-service container_name: llmx-core-service ports: - "9002:9002" @@ -25,9 +25,9 @@ services: volumes: - llmx-core-service-volume:/app/volume restart: always - llmx-impl-baiLian: - image: ${Docker_REGISTRY_URL}/llmx-impl-baiLian - container_name: llmx-impl-baiLian + llmx-impl-bailian: + image: ${${DOCKER_REGISTRY_URL}}/llmx-impl-bailian + container_name: llmx-impl-bailian ports: - "9003:9003" networks: @@ -35,7 +35,7 @@ services: environment: SPRING_PROFILES_ACTIVE: ${SPRING_PROFILES_ACTIVE} volumes: - - llmx-impl-baiLian-volume:/app/volume + - llmx-impl-bailian-volume:/app/volume restart: always llmx-core-database: image: postgres:16-alpine # 长期支持版本推荐用 16 @@ -57,6 +57,6 @@ networks: driver: bridge volumes: llmx-core-service-volume: - llmx-impl-baiLian-volume: + llmx-impl-bailian-volume: llmx-core-db-volume: llmx-nacos-volume: \ No newline at end of file -- 2.47.2