mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-15 14:49:29 +00:00
* feat(podman): add optional Podman setup and documentation - Introduced `setup-podman.sh` for one-time host setup of OpenClaw in a rootless Podman environment, including user creation, image building, and launch script installation. - Added `run-openclaw-podman.sh` for running the OpenClaw gateway as a Podman container. - Created `openclaw.podman.env` for environment variable configuration. - Updated documentation to include Podman installation instructions and a new dedicated Podman guide. - Added a systemd Quadlet unit for managing the OpenClaw service as a user service. * fix: harden Podman setup and docs (#16273) (thanks @DarwinsBuddy) * style: format cli credentials --------- Co-authored-by: Peter Steinberger <steipete@gmail.com>
25 lines
889 B
Bash
25 lines
889 B
Bash
# OpenClaw Podman environment
|
|
# Copy to openclaw.podman.env.local and set OPENCLAW_GATEWAY_TOKEN (or use -e when running).
|
|
# This file can be used with:
|
|
# OPENCLAW_PODMAN_ENV=/path/to/openclaw.podman.env ./scripts/run-openclaw-podman.sh launch
|
|
|
|
# Required: gateway auth token. Generate with: openssl rand -hex 32
|
|
# Set this before running the container (or use run-openclaw-podman.sh which can generate it).
|
|
OPENCLAW_GATEWAY_TOKEN=
|
|
|
|
# Optional: web provider (leave empty to skip)
|
|
# CLAUDE_AI_SESSION_KEY=
|
|
# CLAUDE_WEB_SESSION_KEY=
|
|
# CLAUDE_WEB_COOKIE=
|
|
|
|
# Host port mapping (defaults; override if needed)
|
|
OPENCLAW_PODMAN_GATEWAY_HOST_PORT=18789
|
|
OPENCLAW_PODMAN_BRIDGE_HOST_PORT=18790
|
|
|
|
# Gateway bind (used by the launch script)
|
|
OPENCLAW_GATEWAY_BIND=lan
|
|
|
|
# Optional: LLM provider API keys (for zero cost use Ollama locally or Groq free tier)
|
|
# OLLAMA_API_KEY=ollama-local
|
|
# GROQ_API_KEY=
|