feat(apps/openclaw-zh): 添加 OpenClaw 中文版应用配置

添加 OpenClaw 中文版的 logo、README、数据配置和 docker-compose 文件
This commit is contained in:
arch3rPro
2026-05-08 12:31:18 +08:00
parent 7da105f639
commit bac0625eb9
8 changed files with 199 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
additionalProperties:
formFields:
- default: 18789
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Web UI Port
labelZh: Web UI 端口
required: true
rule: paramPort
type: number
label:
en: Web UI Port
zh: Web UI 端口
zh-Hant: Web UI 埠
- default: ""
edit: true
envKey: OPENCLAW_GATEWAY_TOKEN
labelEn: Gateway Token
labelZh: 网关令牌
random: true
required: false
rule: paramCommon
type: password
label:
en: Gateway Token
zh: 网关令牌
zh-Hant: 閘道權杖
description:
en: Token used to access the OpenClaw Dashboard. Append ?token=your-token to the Dashboard URL when needed.
zh: 用于访问 OpenClaw Dashboard 的令牌。需要时可在访问地址后追加 ?token=你的令牌。
zh-Hant: 用於訪問 OpenClaw Dashboard 的權杖。需要時可在訪問地址後追加 ?token=你的權杖。
@@ -0,0 +1,36 @@
services:
openclaw-zh:
container_name: ${CONTAINER_NAME}
image: 1186258278/openclaw-zh:latest
restart: always
networks:
- 1panel-network
environment:
HOME: /root
TERM: xterm-256color
OPENCLAW_DISABLE_BONJOUR: "1"
OPENCLAW_GATEWAY_TOKEN: ${OPENCLAW_GATEWAY_TOKEN}
volumes:
- ./data/conf:/root/.openclaw
ports:
- ${PANEL_APP_PORT_HTTP}:18789
command: openclaw gateway run --allow-unconfigured
init: true
healthcheck:
test:
[
"CMD",
"node",
"-e",
"fetch('http://127.0.0.1:18789/healthz').then((r)=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))"
]
interval: 3m
timeout: 10s
start_period: 15s
retries: 3
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true