Files
openclaw-taskboard/docker-compose.yml
Christopher Mayor 1804aa664b feat: Add navigation bar and multi-page dashboard
- Add navigation bar with 4 main sections: Tasks, Wiki, Agents, Usage
- Implement Wiki page with task documentation viewer
- Implement Agents page showing workspace, tools, and current tasks
- Implement Usage page displaying providers, models, and quotas
- Add API endpoints: /api/agents, /api/usage, /api/wiki
- Add agent heartbeat endpoint for task assignment
- Update Docker compose with volume mounts for agent and config data
- Add comprehensive CSS for all pages and responsive design
- Add JavaScript navigation and dynamic content loading

🚀 Features:
- 📋 Kanban task board (existing)
- 📚 Wiki documentation viewer
- 🤖 Agent fleet management dashboard
- 📊 Provider usage and quota monitoring
- 🔗 Real-time WebSocket updates
- 📱 Responsive mobile design
2026-03-03 15:45:53 -08:00

19 lines
536 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=/app/wiki
- AGENTS_DIR=/app/agents
- OPENCLAW_CONFIG=/app/config/openclaw.json
volumes:
- ./data:/app/data
- /home/bear/.openclaw/workspace/wiki:/app/wiki
- /home/bear/.openclaw/agents:/app/agents:ro
- /home/bear/.openclaw/openclaw.json:/app/config/openclaw.json:ro