Files
openclaw-taskboard/docker-compose.yml
Christopher Mayor 8a859e2e92 Initial commit: OpenClaw Agent Fleet Dashboard
- Kanban board with 5 columns (Backlog, Todo, In Progress, Review, Done)
- Agent assignment for all OpenClaw agents
- Priority levels and tags
- Wiki auto-generation on task completion
- REST API for agent heartbeat integration
- Real-time updates via WebSocket
- SQLite database for task storage
- Docker deployment configuration
- Traefik ingress configuration
2026-03-03 15:02:01 -08:00

21 lines
459 B
YAML

services:
openclaw-taskboard:
build: .
container_name: openclaw-taskboard
restart: unless-stopped
ports:
- "8395:8395"
environment:
- PORT=8395
- DB_PATH=/app/data/tasks.db
- WIKI_DIR=/home/bear/.openclaw/workspace/wiki
volumes:
- ./data:/app/data
- /home/bear/.openclaw/workspace/wiki:/home/bear/.openclaw/workspace/wiki
networks:
- proxy-net
networks:
proxy-net:
external: true