将常用工具函数移动到utils目录 重构提供商策略模式实现 新增docker-compose构建配置文件 优化UI配置选择器的样式和交互 重构代理工具和API管理模块 更新脚本路径和依赖引用
23 lines
No EOL
579 B
YAML
23 lines
No EOL
579 B
YAML
services:
|
|
aiclient-api:
|
|
# 方式二:从 Dockerfile 本地构建
|
|
# 使用方法: docker compose -f docker-compose.build.yml up -d --build
|
|
build:
|
|
context: ..
|
|
dockerfile: Dockerfile
|
|
container_name: aiclient2api
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000"
|
|
- "8085-8087:8085-8087"
|
|
- "19876-19880:19876-19880"
|
|
volumes:
|
|
- ./configs:/app/configs
|
|
environment:
|
|
- ARGS=
|
|
healthcheck:
|
|
test: ["CMD", "node", "healthcheck.js"]
|
|
interval: 30s
|
|
timeout: 3s
|
|
start_period: 5s
|
|
retries: 3 |