Files
crabwalk/docker-compose.yml
Jamie Taylor 7e75a12614 feat(workspace): add workspace file browser and markdown viewer
Add comprehensive workspace exploration functionality allowing users to browse and view files from the host filesystem. This feature enables inspection of AI agent workspace contents directly through the web interface.

- Add workspace-fs library for safe file system operations with path validation
- Create tRPC workspace router with directory listing and file reading endpoints
- Implement workspace UI components with directory tree navigation
- Add markdown file viewer with syntax highlighting
- Configure Docker volume mounting for ~/.openclaw/workspace access
- Update navigation with tab-based switching between Monitor and Workspace views
2026-01-31 17:27:22 +00:00

14 lines
478 B
YAML

services:
crabwalk:
image: ghcr.io/luccast/crabwalk:latest
ports:
- "3000:3000"
environment:
- CLAWDBOT_API_TOKEN=${CLAWDBOT_API_TOKEN}
volumes:
# Mount host workspace directory to container
# The container expects the workspace at ~/.openclaw/workspace
# Change the host path if your workspace is in a different location
- ${WORKSPACE_HOST_PATH:-~/.openclaw/workspace}:/root/.openclaw/workspace
restart: unless-stopped