Skip to content

Getting Started

Quickstart

Pull and run the latest ClawMetry image in a single command:

bash
docker run -p 8900:8900 stritti/clawmetry:latest

Then open http://localhost:8900 in your browser.

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:latest

Or pass a custom path explicitly:

bash
docker run -p 8900:8900 \
  -v /path/to/workspace:/data \
  stritti/clawmetry:latest --data-dir /data

Available tags

TagDescription
latestLatest clawmetry release
x.y.zSpecific 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

Released under the MIT License.