1
0

add libretv

This commit is contained in:
subdir
2025-06-09 22:21:22 +08:00
parent c93afa467f
commit 08f6c12b4a
6 changed files with 53 additions and 0 deletions

Submodule apps/libretv/202506082214/data added at 26ec4e897c

View File

@@ -0,0 +1,18 @@
additionalProperties:
formFields:
- default: 8899 # HTTP端口默认值
envKey: PANEL_APP_PORT_HTTP
labelEn: HTTP Port
labelZh: HTTP 端口
required: true
edit: true
rule: paramPort
type: number
- default: "111111" # 访问密码默认值
envKey: PANEL_APP_PASSWORD
labelEn: Access Password
labelZh: 访问密码
required: true
edit: true
rule: passwordStrength
type: password

View File

@@ -0,0 +1,17 @@
services:
libretv:
container_name: ${CONTAINER_NAME}
image: bestzwei/libretv:latest
networks:
- 1panel-network
restart: always
ports:
- ${PANEL_APP_PORT_HTTP}:80
environment:
- PASSWORD=${PANEL_APP_PASSWORD} # 关键配置
command: ["/docker-entrypoint.sh", "nginx", "-g", "daemon off;"]
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true