-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (28 loc) · 932 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
35 lines (28 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
services:
qverisbot:
image: ghcr.io/vxwork/qverisbot-docker/qverisbot:linux_latest
container_name: qverisbot
restart: unless-stopped
# 端口映射(可选)
# ports:
# - "18789:18789"
# ⚠️ 关键:挂载配置卷,避免重启丢失配置
volumes:
- ./config:/root/.openclaw # 配置文件持久化
- ./extensions:/app/extensions # 扩展插件持久化
- ./skills:/app/skills # Skills 持久化
environment:
# 必要的 API Key(必须配置)
- QVERIS_API_KEY=${QVERIS_API_KEY:-your-api-key-here}
# 可选配置
- NODE_ENV=production
- OPENCLAW_CONFIG_DIR=/root/.openclaw
- OPENCLAW_WORKSPACE_DIR=/root/.openclaw/workspace
networks:
- qverisbot_network
networks:
qverisbot_network:
driver: bridge
ipam:
config:
- subnet: 10.15.116.0/24