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
+1 -1
View File
@@ -11,7 +11,7 @@ services:
- TZ=Asia/Shanghai
- PUID=1000
- PGID=1000
image: linuxserver/jackett:0.24.1316
image: linuxserver/jackett:0.24.1323
labels:
createdBy: Apps
networks:
+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
+1 -1
View File
@@ -29,7 +29,7 @@ services:
- -e
- fetch('http://127.0.0.1:18789/healthz').then((r)=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))
timeout: 5s
image: ghcr.io/openclaw/openclaw:2026.3.7
image: ghcr.io/openclaw/openclaw:2026.3.8
init: true
labels:
createdBy: Apps