Getting Started
Quickstart
Pull and run the latest ClawMetry image in a single command:
bash
docker run -p 8900:8900 stritti/clawmetry:latestThen open http://localhost:8900 in your browser.
Mount your OpenClaw workspace (recommended)
ClawMetry auto-detects the OpenClaw workspace at ~/.openclaw (/home/clawmetry/.openclaw inside the container). Mount your host workspace so the dashboard can read logs, sessions, memory files, and metrics:
bash
docker run -p 8900:8900 \
-v ~/.openclaw:/home/clawmetry/.openclaw \
stritti/clawmetry:latestOr pass a custom path explicitly:
bash
docker run -p 8900:8900 \
-v /path/to/workspace:/data \
stritti/clawmetry:latest --data-dir /dataAvailable tags
| Tag | Description |
|---|---|
latest | Latest clawmetry release |
x.y.z | Specific clawmetry version (e.g. 0.9.0) |
Images are published to Docker Hub (stritti/clawmetry:<tag>). As an alternative, images are also available from the GitHub Container Registry (ghcr.io/stritti/clawmetry-docker:<tag>).
Build locally
bash
docker build -t clawmetry-docker .
docker run -p 8900:8900 -v ~/.openclaw:/home/clawmetry/.openclaw clawmetry-docker