fix(planting-service): 添加 ADMIN_SERVICE_URL 环境变量
planting-service 的 PrePlantingPublicController 需要调用 admin-service 获取预种配置(含协议文本),但 docker-compose 中缺少 ADMIN_SERVICE_URL 环境变量,导致默认使用 localhost:3010 连接失败。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
c0ac63d40a
commit
5131728835
|
|
@ -340,6 +340,7 @@ services:
|
||||||
- WALLET_SERVICE_URL=http://rwa-wallet-service:3001
|
- WALLET_SERVICE_URL=http://rwa-wallet-service:3001
|
||||||
- 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
|
||||||
# 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