This repository builds a custom OpenClaw container image with extra CLI tools,
Vaultwarden secret access via rbw, and bundled custom extensions.
The image is published to GitHub Container Registry:
ghcr.io/maxim-mityutko/openclaw-docker
Tag format: v<OPENCLAW_BASE_VERSION>.<REVISION> (e.g. v2026.5.26.0)
Configurable versions via build args:
| Build arg | Default | Description |
|---|---|---|
OPENCLAW_IMAGE_VERSION |
latest |
Upstream OpenClaw image tag |
RBW_VERSION |
1.15.0 |
RBW release version |
KUBECTL_VERSION |
stable |
kubectl release or stable |
HELM_VERSION |
3.19.2 |
Helm 3.x release (pin to 3.19.x or latest 3.x) |
All changes to this repository must be submitted via pull request.
Never commit directly to main.
- Add the installation step to
Dockerfilefollowing the existing patterns - Add the tool to the Tools table in
README.mdin alphabetical order - Include the
Versioncolumn (useapt show <package>or the upstream release page) - If the tool has a configurable version via build arg, add the
ARGat the top of the Dockerfile
- Update the relevant
ARGinDockerfile(or use the existing build arg) - Update the
Versioncolumn inREADME.md - Submit a PR with both changes