Hosting

Docker VM runtime

Use this runtime flow after provisioning a VM and installing Docker. Provider guides such as GCP and Hetzner own VM creation, firewall rules, SSH access, and the tunnel back to your laptop. This page owns the Docker setup shared by those hosts.

Before you begin

You need:

  • A Debian or Ubuntu VM with Docker Engine and Docker Compose v2
  • At least 6 GB RAM for a source image build; smaller hosts should use the official pre-built image below
  • The OpenClaw source checkout on the VM
  • Provider and model credentials for onboarding
  • An SSH-only or otherwise restricted provider firewall; do not expose the Gateway port directly to the public Internet

From the VM:

bash
git clone https://github.com/openclaw/openclaw.gitcd openclawdocker --versiondocker compose version

Prepare persistent host state

The maintained setup script defaults state to the current VM user's home:

bash
export OPENCLAW_CONFIG_DIR="$HOME/.openclaw"export OPENCLAW_WORKSPACE_DIR="$HOME/.openclaw/workspace"export OPENCLAW_AUTH_PROFILE_SECRET_DIR="$HOME/.openclaw-auth-profile-secrets"

Override those paths before setup if your VM uses a dedicated data disk. Keep all three directories in backups. Current OAuth token material is stored as plaintext in SQLite under OPENCLAW_CONFIG_DIR, including access, refresh, and ID-token values. Treat the config directory and its backups or copies as credentials.

The auth-profile secret directory contains only the local key used to recover legacy encrypted OAuth sidecar credentials. It must persist for that recovery path and remain separate from OPENCLAW_CONFIG_DIR, but it does not encrypt current SQLite rows or protect a state-only backup or copy.

Run the maintained Docker setup

bash
./scripts/docker/setup.sh

The script creates the host directories, builds openclaw:local, runs onboarding, generates a Gateway token, synchronizes .env, and starts the Gateway through the repository's docker-compose.yml. The Compose file pins container-side state to /home/node/.openclaw while using the host paths above as bind-mount sources.

To use an official prebuilt image instead of building from source:

bash
export OPENCLAW_IMAGE="ghcr.io/openclaw/openclaw:latest"./scripts/docker/setup.sh

For unattended setup, provider SecretRefs, extra mounts, sandbox setup, and all supported environment variables, use the full Docker guide.

Bake required binaries into the image

Installing binaries inside a running container is a trap: anything installed at runtime is lost when the container is recreated. Bake every external binary a skill needs into the image at build time.

The examples below cover three binaries only, alphabetically:

  • gog (from gogcli) for Gmail access
  • goplaces for Google Places
  • wacli for WhatsApp

These are examples, not a complete list. Docker Compose builds the repo-root Dockerfile, so extend that file rather than creating a standalone example or replacing its contents. The repository Dockerfile has required manifest extraction, build, production dependency, runtime-assets, and final runtime stages. Build and production installs share the same manifests and lockfile, including packages/* and selected plugin workspaces.

For Debian packages, prefer the existing build argument:

bash
export OPENCLAW_IMAGE_APT_PACKAGES="socat"

For downloaded release binaries such as gog, goplaces, or wacli, add the download and install commands to the repo-root Dockerfile final runtime stage, after its package-install blocks and before USER node. Preserve the existing non-root uid 1000 setup, tini entrypoint, health check, and openclaw symlink.

Rebuild the customized image without repeating onboarding:

bash
OPENCLAW_SKIP_ONBOARDING=1 ./scripts/docker/setup.sh

If the build fails with Killed or exit code 137 during dependency installation or bundling, the VM is out of memory. Resize it before retrying.

Verify baked binaries:

bash
docker compose exec openclaw-gateway which gogdocker compose exec openclaw-gateway which goplacesdocker compose exec openclaw-gateway which wacli

Verify and administer the Gateway

bash
docker compose psdocker compose logs --tail=100 openclaw-gatewaycurl -fsS http://127.0.0.1:18789/healthzdocker compose run --rm openclaw-cli dashboard --no-open

/healthz returning a 200 response confirms that the Gateway process is listening. The image HEALTHCHECK polls the same endpoint. If the Control UI requires device approval:

bash
docker compose run --rm openclaw-cli devices listdocker compose run --rm openclaw-cli devices approve <requestId>

What persists where

OpenClaw runs in Docker, but the container filesystem is not the source of truth. Long-lived state must survive restarts, rebuilds, and reboots.

Component Container location Persistence mechanism Notes
Gateway state/config /home/node/.openclaw/ OPENCLAW_CONFIG_DIR mount Includes openclaw.json, shared state, and installed plugin package roots
Agent workspace /home/node/.openclaw/workspace/ Workspace mount Code and agent artifacts
Channel credentials /home/node/.openclaw/credentials/ Config mount Channel credential material
Model auth profiles /home/node/.openclaw/ Config mount Shared state/openclaw.sqlite; agent-local agents/<agentId>/agent/openclaw-agent.sqlite
Auth-profile key /home/node/.config/openclaw/ Secret-directory mount Legacy encrypted-sidecar recovery key; does not protect current SQLite rows
Skill state /home/node/.openclaw/skills/ Config mount Skill-level state
External binaries /usr/local/bin/ Docker image Must be baked at build time
Node and OS packages Container filesystem Docker image Rebuilt with the image; do not install at runtime
Docker container Ephemeral Restartable Safe to replace after mounted state is verified

Common pitfall: never file-bind openclaw.json

Mount the gateway state as a directory, never as a single file. The repo docker-compose.yml already does this:

yaml
# Supported: whole state directory.- "${OPENCLAW_CONFIG_DIR:-${HOME:-/tmp}/.openclaw}:/home/node/.openclaw"
yaml
# Unsupported: single-file bind. Do not use this.# - "./openclaw.json:/home/node/.openclaw/openclaw.json"

A single-file bind remains attached to the mounted file. Normal OpenClaw configuration saves replace openclaw.json. If a host-side save replaces the source of a single-file bind after the container starts, the container can keep reading the old file while the host path points to the new one. The host-side save can succeed without updating what the container sees. An edit that writes to the same file in place does not cause this divergence.

Fix: keep the directory mount from Compose. Edit openclaw.json on the host inside that directory.

Update OpenClaw

For a source-built image:

bash
git pull --ff-onlyOPENCLAW_SKIP_ONBOARDING=1 ./scripts/docker/setup.shdocker compose run --rm openclaw-cli doctor --json

For a pinned or prebuilt image, update OPENCLAW_IMAGE to the intended tag or digest before rerunning the setup script. Routine image upgrades run startup-safe migrations against the mounted state; see Upgrading container images for recovery when a migration cannot complete automatically.

Was this useful?
On this page

On this page