1
0

Update Apps

This commit is contained in:
pooneyy
2025-06-13 18:53:10 +08:00
parent be08a5b4b7
commit e5678a3ec6
437 changed files with 3533 additions and 1195 deletions

View File

@@ -0,0 +1,3 @@
CONTAINER_NAME="webos"
PANEL_APP_PORT_HTTP="40104"
DATA_PATH="./data"

17
apps/webos/1.4.4/data.yml Normal file
View File

@@ -0,0 +1,17 @@
additionalProperties:
formFields:
- default: 40104
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
- default: ./data
edit: true
envKey: DATA_PATH
labelEn: Data folder path
labelZh: 数据文件夹路径
required: true
type: text

View File

@@ -0,0 +1,19 @@
services:
webos:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:8088"
volumes:
- "${DATA_PATH}/rootPath:/webos/api/rootPath"
- "${DATA_PATH}/apps:/webos/web/apps"
tty: true
image: fs185085781/webos:v1.4.4
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true