AssetManager.API/docker-compose.yml
OpenClaw Agent 1977dd609d fix: 请求收益曲线时自动回填历史数据
- GetNavHistoryAsync现在会自动检查是否有历史数据
- 无历史数据时自动调用BackfillNavHistoryInternalAsync
- 拆分内部回填方法,避免重复验证权限
2026-03-13 16:21:31 +00:00

26 lines
663 B
YAML
Executable File

version: '3.8'
services:
# 后端 API 服务
api:
build: .
container_name: assetmanager-api
restart: always
ports:
- "7040:8080"
environment:
- ASPNETCORE_ENVIRONMENT=${ASPNETCORE_ENVIRONMENT:-Production}
- ConnectionStrings__Default=${ConnectionStrings__Default}
- Jwt__SecretKey=${Jwt__SecretKey}
- Jwt__Issuer=${Jwt__Issuer:-AssetManager}
- Jwt__Audience=${Jwt__Audience:-AssetManager}
- Wechat__AppId=${Wechat__AppId}
- Wechat__AppSecret=${Wechat__AppSecret}
- Tiingo__ApiKey=${Tiingo__ApiKey}
- TZ=${TZ:-Asia/Shanghai}
volumes:
- logs:/app/logs
volumes:
logs: