mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-13 12:52:18 +08:00
Merge 1ad81acfca
into bf9ab75f47
This commit is contained in:
commit
176fa878d1
@ -1 +0,0 @@
|
|||||||
Subproject commit 26ec4e897c7ddc8968d21bcf0afab07e06348852
|
|
@ -1,17 +0,0 @@
|
|||||||
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
|
|
@ -1,18 +1,25 @@
|
|||||||
additionalProperties:
|
additionalProperties:
|
||||||
formFields:
|
formFields:
|
||||||
- default: 8899 # HTTP端口默认值
|
# HTTP 端口
|
||||||
|
- default: 8899
|
||||||
envKey: PANEL_APP_PORT_HTTP
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelZh: HTTP端口
|
||||||
labelEn: HTTP Port
|
labelEn: HTTP Port
|
||||||
labelZh: HTTP 端口
|
|
||||||
required: true
|
required: true
|
||||||
edit: true
|
edit: true
|
||||||
rule: paramPort
|
rule: paramPort
|
||||||
type: number
|
type: number
|
||||||
- default: "111111" # 访问密码默认值
|
|
||||||
|
# 访问密码
|
||||||
|
- default: "111111"
|
||||||
envKey: PANEL_APP_PASSWORD
|
envKey: PANEL_APP_PASSWORD
|
||||||
labelEn: Access Password
|
|
||||||
labelZh: 访问密码
|
labelZh: 访问密码
|
||||||
|
labelEn: Access Password
|
||||||
required: true
|
required: true
|
||||||
edit: true
|
edit: true
|
||||||
rule: paramComplexity
|
rule: passwordStrength
|
||||||
type: password
|
type: password
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
25
apps/libretv/202506102250/docker-compose.yml
Normal file
25
apps/libretv/202506102250/docker-compose.yml
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
services:
|
||||||
|
libretv:
|
||||||
|
image: bestzwei/libretv:latest
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
ports:
|
||||||
|
- "${HOST_IP}:${PANEL_APP_PORT_HTTP}:8080"
|
||||||
|
environment:
|
||||||
|
- PASSWORD=${PANEL_APP_PASSWORD:-111111}
|
||||||
|
volumes:
|
||||||
|
- libretv_data:/app
|
||||||
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
libretv_data:
|
||||||
|
driver: local
|
||||||
|
driver_opts:
|
||||||
|
type: none
|
||||||
|
o: bind
|
||||||
|
device: ./data
|
||||||
|
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
Loading…
Reference in New Issue
Block a user