Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2026-03-09 04:53:52 +00:00
parent 455cd6f05a
commit c979b817fb
45 changed files with 311 additions and 8 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ services:
- PORT=7789
- CONFIG=/config
- TZ=Asia/Shanghai
image: wushuo894/ani-rss:v3.0.7
image: wushuo894/ani-rss:v3.0.8
labels:
createdBy: Apps
networks:
+1 -1
View File
@@ -9,7 +9,7 @@ services:
- .env
environment:
- TZ=Asia/Shanghai
image: soulter/astrbot:v4.19.3
image: soulter/astrbot:v4.19.4
labels:
createdBy: Apps
networks:
+1 -1
View File
@@ -9,7 +9,7 @@ services:
- .env
environment:
- TZ=Asia/Shanghai
image: soulter/astrbot:v4.19.3
image: soulter/astrbot:v4.19.4
labels:
createdBy: Apps
networks:
+12
View File
@@ -0,0 +1,12 @@
# 数据持久化路径 [必填]
OPENCLAW_ROOT_PATH=/home/openclaw
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=18789
# RPC 端口 [必填]
PANEL_APP_PORT_RPC=18790
# 网关 token [必填]
OPENCLAW_GATEWAY_TOKEN=
+69
View File
@@ -0,0 +1,69 @@
networks:
1panel-network:
external: true
services:
openclaw:
command:
- node
- dist/index.js
- gateway
- --bind
- ${OPENCLAW_GATEWAY_BIND:-lan}
- --port
- '18789'
container_name: openclaw
env_file:
- ./envs/global.env
- .env
environment:
- TZ=Asia/Shanghai
- HOME=/home/node
- TERM=xterm-256color
healthcheck:
interval: 30s
retries: 5
start_period: 20s
test:
- CMD
- node
- -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
init: true
labels:
createdBy: Apps
ports:
- ${PANEL_APP_PORT_HTTP}:18789
- ${PANEL_APP_PORT_RPC}:18790
restart: always
user: node:node
volumes:
- ${OPENCLAW_ROOT_PATH}/data/config:/home/node/.openclaw
- ${OPENCLAW_ROOT_PATH}/data/workspace:/home/node/.openclaw/workspace
openclaw-cli:
cap_drop:
- NET_RAW
- NET_ADMIN
container_name: openclaw-cli
depends_on:
- openclaw
entrypoint:
- node
- dist/index.js
environment:
- TZ=Asia/Shanghai
- HOME=/home/node
- TERM=xterm-256color
- BROWSER=echo
image: ghcr.io/openclaw/openclaw:2026.3.7
init: true
network_mode: service:openclaw
security_opt:
- no-new-privileges:true
stdin_open: true
tty: true
user: node:node
volumes:
- ${OPENCLAW_ROOT_PATH}/data/config:/home/node/.openclaw
- ${OPENCLAW_ROOT_PATH}/data/workspace:/home/node/.openclaw/workspace
+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
@@ -11,7 +11,7 @@ services:
- TZ=Asia/Shanghai
- SUI_LOG_LEVEL=info
- SUI_DEBUG=false
image: alireza7/s-ui:v1.3.11
image: alireza7/s-ui:v1.4.0
labels:
createdBy: Apps
networks: