Files
openclaw-dashboard/docker-compose.yml
T
OpenClaw e623d42eb8 feat: openclaw session dashboard
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-17 15:49:23 +00:00

19 lines
480 B
YAML

services:
openclaw-dashboard:
build: .
ports:
- "${PORT:-3850}:3850"
environment:
PORT: "3850"
SESSIONS_DIR: "/sessions"
volumes:
# Mount the sessions directory as read-only
- ${SESSIONS_DIR:-/home/node/.openclaw/agents}:/sessions:ro
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:3850/api/sessions"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s