- 添加完整的项目基础结构,包括配置、类型定义和常量 - 实现OAuth认证流程和令牌管理 - 开发请求转换和响应处理逻辑 - 添加SSE流处理和ChatCompletions API转换 - 实现模型映射和提示指令系统 - 包含Docker部署配置和快速启动文档 - 添加自动登录功能和测试脚本
33 lines
763 B
YAML
33 lines
763 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
chatgpt-codex-router:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/Dockerfile
|
|
container_name: chatgpt-codex-router
|
|
ports:
|
|
- "3000:3000"
|
|
- "1455:1455"
|
|
volumes:
|
|
- ./data:/app/data
|
|
- ./logs:/app/logs
|
|
- ./config.json:/app/.chatgpt-codex-router/config.json:ro
|
|
environment:
|
|
- PORT=3000
|
|
- LOG_LEVEL=info
|
|
- NODE_ENV=production
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "bun", "run", "-e", "fetch('http://localhost:3000/health').then(r => process.exit(r.ok ? 0 : 1))"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 5s
|
|
networks:
|
|
- chatgpt-router-network
|
|
|
|
networks:
|
|
chatgpt-router-network:
|
|
driver: bridge
|