From a148f2664961d2eacc20e16a43b05bcea6cf2e46 Mon Sep 17 00:00:00 2001 From: Developer Date: Wed, 3 Dec 2025 00:53:37 -0800 Subject: [PATCH] =?UTF-8?q?fix(api-gateway):=20=E4=BD=BF=E7=94=A8=E5=AE=98?= =?UTF-8?q?=E6=96=B9=20Docker=20Hub=20=E9=95=9C=E5=83=8F=E8=A7=A3=E5=86=B3?= =?UTF-8?q?=E6=8B=89=E5=8F=96=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 使用 docker.io/kong/kong-gateway:3.5 官方镜像 - 使用 docker.io/library/postgres:16-alpine 官方镜像 - 保留数据库模式,完整功能支持 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- backend/api-gateway/docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/api-gateway/docker-compose.yml b/backend/api-gateway/docker-compose.yml index 04969257..f46c7d69 100644 --- a/backend/api-gateway/docker-compose.yml +++ b/backend/api-gateway/docker-compose.yml @@ -13,7 +13,7 @@ services: # Kong Database # =========================================================================== kong-db: - image: postgres:16-alpine + image: docker.io/library/postgres:16-alpine container_name: rwa-kong-db environment: POSTGRES_USER: kong @@ -34,7 +34,7 @@ services: # Kong Migrations (只运行一次) # =========================================================================== kong-migrations: - image: kong:3.5-alpine + image: docker.io/kong/kong-gateway:3.5 container_name: rwa-kong-migrations command: kong migrations bootstrap environment: @@ -54,7 +54,7 @@ services: # Kong API Gateway # =========================================================================== kong: - image: kong:3.5-alpine + image: docker.io/kong/kong-gateway:3.5 container_name: rwa-kong environment: KONG_DATABASE: postgres