fix(docker): 为 planting-service 添加 AUTHORIZATION_SERVICE_URL 环境变量

planting-service 缺少 AUTHORIZATION_SERVICE_URL 配置,
默认回退到 http://localhost:3006,在容器内无法访问 authorization-service,
导致所有授权分配请求失败走 fallback。

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-03-01 02:15:23 -08:00
parent d880242807
commit a15a4a97b1
1 changed files with 1 additions and 0 deletions

View File

@ -341,6 +341,7 @@ services:
- IDENTITY_SERVICE_URL=http://rwa-identity-service:3000 - IDENTITY_SERVICE_URL=http://rwa-identity-service:3000
- REFERRAL_SERVICE_URL=http://rwa-referral-service:3004 - REFERRAL_SERVICE_URL=http://rwa-referral-service:3004
- ADMIN_SERVICE_URL=http://rwa-admin-service:3010 - ADMIN_SERVICE_URL=http://rwa-admin-service:3010
- AUTHORIZATION_SERVICE_URL=http://rwa-authorization-service:3009
# MinIO Object Storage - 用于合同签名和PDF存储 # MinIO Object Storage - 用于合同签名和PDF存储
- MINIO_ENDPOINT=${MINIO_ENDPOINT:-192.168.1.100} - MINIO_ENDPOINT=${MINIO_ENDPOINT:-192.168.1.100}
- MINIO_PORT=${MINIO_PORT:-9000} - MINIO_PORT=${MINIO_PORT:-9000}