docs/install/podman.md
Run the OpenClaw Gateway in a rootless Podman container, managed by your current non-root user.
The model:
openclaw CLI is the control plane.~/.openclaw by default.openclaw --container <name> ... instead of sudo -u openclaw, podman exec, or a separate service user.systemd --user if you want Quadlet-managed auto-startsudo only if you want loginctl enable-linger "$(whoami)" for boot persistence on a headless hostThis builds `openclaw:local` in your rootless Podman store (or pulls `OPENCLAW_IMAGE` / `OPENCLAW_PODMAN_IMAGE` if set), creates `~/.openclaw/openclaw.json` with `gateway.mode: "local"` if missing, and creates `~/.openclaw/.env` with a generated `OPENCLAW_GATEWAY_TOKEN` if missing.
Optional build-time env vars:
| Var | Effect |
| --- | --- |
| `OPENCLAW_IMAGE` / `OPENCLAW_PODMAN_IMAGE` | Use an existing/pulled image instead of building `openclaw:local` |
| `OPENCLAW_IMAGE_APT_PACKAGES` | Install extra apt packages during image build (also accepts legacy `OPENCLAW_DOCKER_APT_PACKAGES`) |
| `OPENCLAW_IMAGE_PIP_PACKAGES` | Install extra Python packages during image build; pin versions and use only package indexes you trust |
| `OPENCLAW_EXTENSIONS` | Pre-install plugin dependencies at build time |
| `OPENCLAW_INSTALL_BROWSER` | Pre-install Chromium and Xvfb for browser automation (set to `1`) |
For Quadlet-managed setup instead (Linux + systemd user services only):
```bash
./scripts/podman/setup.sh --quadlet
```
Or set `OPENCLAW_PODMAN_QUADLET=1`.
Starts the container as your current uid/gid with `--userns=keep-id` and bind-mounts your OpenClaw state into the container.
Then open `http://127.0.0.1:18789/` and use the token from `~/.openclaw/.env`.
Model auth: use OpenClaw-managed auth during setup (Anthropic API keys, or OpenAI Codex browser OAuth/device-code auth for Codex-backed OpenAI). The Podman launcher does not mount host CLI credential homes such as `~/.claude` or `~/.codex` into the setup or gateway container. Existing host CLI logins are same-host convenience paths only -- for container installs, keep provider auth in the mounted `~/.openclaw` state that setup manages.
Then normal `openclaw` commands run inside that container automatically:
```bash
openclaw dashboard --no-open
openclaw gateway status --deep # includes extra service scan
openclaw doctor
openclaw channels login
```
On macOS, Podman machine may make the browser appear non-local to the gateway. If the Control UI reports device-auth errors after launch, use the Tailscale guidance in [Podman and Tailscale](#podman-and-tailscale).
The manual launcher reads only a small allowlist of Podman-related keys from ~/.openclaw/.env and passes explicit runtime env vars to the container; it does not hand the full env file to Podman.
<a id="podman-and-tailscale"></a>
For HTTPS or remote browser access, follow the main Tailscale docs.
Podman-specific notes:
127.0.0.1.tailscale serve over openclaw gateway --tailscale serve.See Tailscale and Control UI.
If you ran ./scripts/podman/setup.sh --quadlet, setup installs a Quadlet file at ~/.config/containers/systemd/openclaw.container.
| Action | Command |
|---|---|
| Start | systemctl --user start openclaw.service |
| Stop | systemctl --user stop openclaw.service |
| Status | systemctl --user status openclaw.service |
| Logs | journalctl --user -u openclaw.service -f |
After editing the Quadlet file:
systemctl --user daemon-reload
systemctl --user restart openclaw.service
For boot persistence on SSH/headless hosts, enable lingering for your current user:
sudo loginctl enable-linger "$(whoami)"
The generated Quadlet service keeps a fixed, hardened default shape: 127.0.0.1 published ports (18789 gateway, 18790 bridge), --bind lan inside the container, keep-id user namespace, OPENCLAW_NO_RESPAWN=1, Restart=on-failure, and TimeoutStartSec=300. It reads ~/.openclaw/.env as a runtime EnvironmentFile for values such as OPENCLAW_GATEWAY_TOKEN, but does not consume the manual launcher's Podman-specific override allowlist. For custom publish ports, publish host, or other container-run flags, use the manual launcher instead, or edit ~/.config/containers/systemd/openclaw.container directly and then reload and restart the service.
~/.openclaw~/.openclaw/workspace~/.openclaw/.env./scripts/run-openclaw-podman.shThe launch script and Quadlet bind-mount host state into the container: OPENCLAW_CONFIG_DIR -> /home/node/.openclaw, OPENCLAW_WORKSPACE_DIR -> /home/node/.openclaw/workspace. By default those are host directories, not anonymous container state, so openclaw.json, per-agent auth-profiles.json, channel/provider state, sessions, and workspace survive container replacement. Setup also seeds gateway.controlUi.allowedOrigins for 127.0.0.1 and localhost on the published gateway port so the local dashboard works with the container's non-loopback bind.
Useful env vars for the manual launcher (persist these in ~/.openclaw/.env; the launcher reads that file before finalizing container/image defaults):
| Var | Default | Effect |
|---|---|---|
OPENCLAW_PODMAN_CONTAINER | openclaw | Container name |
OPENCLAW_PODMAN_IMAGE / OPENCLAW_IMAGE | openclaw:local | Image to run |
OPENCLAW_PODMAN_GATEWAY_HOST_PORT | 18789 | Host port mapped to container 18789 |
OPENCLAW_PODMAN_BRIDGE_HOST_PORT | 18790 | Host port mapped to container 18790 |
OPENCLAW_PODMAN_PUBLISH_HOST | 127.0.0.1 | Host interface for published ports |
OPENCLAW_GATEWAY_BIND | lan | Gateway bind mode inside the container |
OPENCLAW_PODMAN_USERNS | keep-id | keep-id, auto, or host |
If you use a non-default OPENCLAW_CONFIG_DIR or OPENCLAW_WORKSPACE_DIR, set the same variables for both ./scripts/podman/setup.sh and later ./scripts/run-openclaw-podman.sh launch commands -- the repo-local launcher does not persist custom path overrides across shells.
After you rebuild or pull a new image, restart the container or Quadlet service. On first startup for a new OpenClaw version, the gateway runs safe state and plugin repairs before reporting ready.
If the gateway exits instead of becoming ready, run the same image once with
openclaw doctor --fix against the same mounted state/config, then restart the
gateway normally:
OPENCLAW_CONFIG_DIR="${OPENCLAW_CONFIG_DIR:-$HOME/.openclaw}"
OPENCLAW_WORKSPACE_DIR="${OPENCLAW_WORKSPACE_DIR:-$OPENCLAW_CONFIG_DIR/workspace}"
OPENCLAW_PODMAN_IMAGE="${OPENCLAW_PODMAN_IMAGE:-${OPENCLAW_IMAGE:-openclaw:local}}"
podman run --rm -it \
--userns=keep-id \
--user "$(id -u):$(id -g)" \
-e HOME=/home/node \
-e NPM_CONFIG_CACHE=/home/node/.openclaw/.npm \
-v "$OPENCLAW_CONFIG_DIR:/home/node/.openclaw:rw" \
-v "$OPENCLAW_WORKSPACE_DIR:/home/node/.openclaw/workspace:rw" \
"$OPENCLAW_PODMAN_IMAGE" \
openclaw doctor --fix
On SELinux hosts, add ,Z to both bind mounts if Podman blocks access to the
mounted state.
podman logs -f openclawpodman stop openclawpodman rm -f openclawopenclaw dashboard --no-openopenclaw gateway status --deep (RPC probe + extra service scan)--userns=keep-id and --user <your uid>:<your gid> by default. Ensure the host config/workspace paths are owned by your current user.gateway.mode=local): Ensure ~/.openclaw/openclaw.json exists and sets gateway.mode="local". scripts/podman/setup.sh creates this if missing.openclaw doctor --fix command in Upgrading images, then start the gateway again.openclaw --container <name> ... explicitly, or export OPENCLAW_CONTAINER=<name> in your shell.openclaw update fails with --container: Expected. Rebuild/pull the image, then restart the container or the Quadlet service.systemctl --user daemon-reload, then systemctl --user start openclaw.service. On headless systems you may also need sudo loginctl enable-linger "$(whoami)".:Z on Linux when SELinux is enforcing or permissive.