-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (28 loc) · 970 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (28 loc) · 970 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
services:
ceo:
image: wanikua/become-ceo:latest
build: . # Local build fallback (auto-builds when no pre-built image exists)
container_name: become-ceo
restart: unless-stopped
ports:
- "127.0.0.1:18789:18789" # Gateway Dashboard
- "127.0.0.1:18795:18795" # CEO Dashboard (optional)
volumes:
# Config file (must be mounted)
- ./openclaw.json:${OPENCLAW_CONFIG_PATH:-/root/.openclaw/openclaw.json}
# Workspace persistence (memory, logs, etc.)
- ceo-workspace:${OPENCLAW_WORKSPACE:-/root/clawd}
# OpenViking data persistence (optional)
- ceo-openviking:/root/.openviking
environment:
- LLM_API_KEY=${LLM_API_KEY:-}
- OPENVIKING_CONFIG_FILE=${OPENVIKING_CONFIG_FILE:-}
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:18789/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
volumes:
ceo-workspace:
ceo-openviking: