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:
parent
d880242807
commit
a15a4a97b1
|
|
@ -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}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue