Files
openclaw-taskboard/docker-compose.yml

27 lines
770 B
YAML

version: '3.8'
services:
taskboard:
build: .
container_name: openclaw-taskboard
ports:
- "8395:8395"
volumes:
- ./data:/app/data
- /home/bear/.openclaw/workspace/wiki:/app/wiki
- /home/bear/.openclaw/agents:/app/agents:ro
- /home/bear/.clawdbot:/app/swarm:ro
- /home/bear/.openclaw/openclaw.json:/app/openclaw.json:ro
environment:
- NODE_ENV=production
- PORT=8395
- DB_PATH=/app/data/tasks.db
- WIKI_DIR=/app/wiki
- AGENTS_DIR=/app/agents
- SESSIONS_DIR=/app/agents
- SWARM_TASKS_FILE=/app/swarm/active-tasks.json
- OPENCLAW_CONFIG=/app/openclaw.json
- GITEA_URL=https://gitea.tophermayor.com
- GITEA_TOKEN=${GITEA_TOKEN}
restart: unless-stopped