- 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
21 lines
459 B
YAML
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
|