ai-gateway/docker-compose.yml

33 lines
1020 B
YAML
Raw Normal View History

version: '3.4'
services:
one-api:
2023-06-22 03:15:01 +00:00
image: justsong/one-api:latest
container_name: one-api
restart: always
command: --log-dir /app/logs
ports:
- "3000:3000"
volumes:
- ./data:/data
- ./logs:/app/logs
2023-06-22 03:15:01 +00:00
environment:
- SQL_DSN=root:123456@tcp(host.docker.internal:3306)/one-api # 修改此行,或注释掉以使用 SQLite 作为数据库
- REDIS_CONN_STRING=redis://redis:6379
- SESSION_SECRET=random_string # 修改为随机字符串
- TZ=Asia/Shanghai
# - SYNC_FREQUENCY=60 # 多机部署时从节点取消注释该行
# - FRONTEND_BASE_URL=https://openai.justsong.cn # 多机部署时从节点取消注释该行
healthcheck:
2023-06-22 03:15:01 +00:00
test: [ "CMD-SHELL", "curl -s http://localhost:3000/api/status | grep -o '\"success\":\\s*true' | awk '{print $2}' | grep 'true'" ]
interval: 30s
timeout: 10s
retries: 3
2023-06-22 03:15:01 +00:00
redis:
image: redis:latest
container_name: redis
restart: always
ports:
- "6379:6379"