- 修改 docker-compose.yml:将宿主机端口从 3000 改为 3001 - 修改 routes.js:增强 system 字段过滤逻辑,过滤所有项中的敏感词 - 修改 transformers/request-anthropic.js:添加 filterSensitiveKeywords 函数 - 修改 user-agent-updater.js:优化错误日志输出,增加超时时间 过滤规则: - "Claude Code" → "AI Assistant" - "Claude" → "AI" - "Anthropic" → "Factory" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
26 lines
782 B
YAML
26 lines
782 B
YAML
version: '3.8'
|
||
|
||
services:
|
||
droid2api:
|
||
build: .
|
||
container_name: droid2api
|
||
ports:
|
||
- "3001:3000"
|
||
environment:
|
||
# 认证配置(按优先级选择其一):
|
||
# 最高优先级:固定API密钥(推荐用于生产环境)
|
||
- FACTORY_API_KEY=${FACTORY_API_KEY}
|
||
# 次优先级:refresh token自动刷新机制
|
||
- DROID_REFRESH_KEY=${DROID_REFRESH_KEY}
|
||
# 可选:如果需要修改端口,在config.json中配置
|
||
volumes:
|
||
# 可选:持久化auth.json以保存刷新的tokens
|
||
- ./data:/app/data
|
||
restart: unless-stopped
|
||
healthcheck:
|
||
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:3000/"]
|
||
interval: 30s
|
||
timeout: 10s
|
||
retries: 3
|
||
start_period: 40s
|