Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2026-03-09 09:55:23 +00:00
parent 0e290eeacc
commit eb99287934
37 changed files with 259 additions and 4 deletions
+9
View File
@@ -0,0 +1,9 @@
# 数据持久化路径 [必填]
OPENCLAW_ROOT_PATH=/home/openclaw-zh
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=18789
# 网关 token [必填]
OPENCLAW_GATEWAY_TOKEN=
+24
View File
@@ -0,0 +1,24 @@
{
"gateway": {
"mode": "local",
"controlUi": {
"dangerouslyAllowHostHeaderOriginFallback": true
}
},
"agents": {
"defaults": {
"workspace": "/home/node/.openclaw/workspace"
},
"list": [
{
"id": "main",
"workspace": "/home/node/.openclaw/workspace",
"identity": {
"name": "Clawd",
"theme": "helpful assistant",
"emoji": "🦞"
}
}
]
}
}
+22
View File
@@ -0,0 +1,22 @@
networks:
1panel-network:
external: true
services:
openclaw-zh:
container_name: openclaw-zh
env_file:
- ./envs/global.env
- .env
environment:
- TZ=Asia/Shanghai
image: 1186258278/openclaw-zh:latest
init: true
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:18789
restart: always
volumes:
- ${OPENCLAW_ROOT_PATH}/data:/root/.openclaw
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai