56 lines
1.8 KiB
Bash
56 lines
1.8 KiB
Bash
# =========================================================
|
|
# OpenClaw Docker deployment
|
|
# =========================================================
|
|
|
|
# Official image
|
|
OPENCLAW_IMAGE=ghcr.io/openclaw/openclaw:latest-browser
|
|
|
|
# ---------------------------------------------------------
|
|
# Host paths
|
|
# ---------------------------------------------------------
|
|
OPENCLAW_CONFIG_DIR=/volume2/docker/docker_projects/openclaw/data
|
|
OPENCLAW_WORKSPACE_DIR=/volume2/docker/docker_projects/openclaw/data/workspace
|
|
OPENCLAW_AUTH_PROFILE_SECRET_DIR=/volume2/docker/docker_projects/openclaw/auth
|
|
|
|
# ---------------------------------------------------------
|
|
# Gateway
|
|
# ---------------------------------------------------------
|
|
OPENCLAW_GATEWAY_PORT=2800
|
|
OPENCLAW_BRIDGE_PORT=2879
|
|
|
|
# Docker deployment should normally use LAN bind
|
|
OPENCLAW_GATEWAY_BIND=lan
|
|
|
|
# Generate a long random value on the server.
|
|
# Example:
|
|
# head -c 32 /dev/urandom | od -An -tx1 | tr -d ' \n'
|
|
OPENCLAW_GATEWAY_TOKEN=CHANGE_ME_TO_A_LONG_RANDOM_TOKEN
|
|
|
|
# ---------------------------------------------------------
|
|
# Timezone
|
|
# ---------------------------------------------------------
|
|
OPENCLAW_TZ=Asia/Shanghai
|
|
|
|
# ---------------------------------------------------------
|
|
# Optional provider keys
|
|
# Add only the providers you actually use.
|
|
# ---------------------------------------------------------
|
|
|
|
# OPENAI_API_KEY=
|
|
# ANTHROPIC_API_KEY=
|
|
# DEEPSEEK_API_KEY=
|
|
|
|
# ---------------------------------------------------------
|
|
# Optional Telegram
|
|
# Better added later when we configure the Butler Agent.
|
|
# ---------------------------------------------------------
|
|
|
|
# TELEGRAM_BOT_TOKEN=
|
|
|
|
# ---------------------------------------------------------
|
|
# Optional
|
|
# Usually leave empty/default
|
|
# ---------------------------------------------------------
|
|
|
|
OPENCLAW_DISABLE_BONJOUR=1
|
|
OPENCLAW_ALLOW_INSECURE_PRIVATE_WS= |