diff --git a/apps/libretv/202506082214/data b/apps/libretv/202506082214/data deleted file mode 160000 index 26ec4e89..00000000 --- a/apps/libretv/202506082214/data +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 26ec4e897c7ddc8968d21bcf0afab07e06348852 diff --git a/apps/libretv/202506082214/docker-compose.yml b/apps/libretv/202506082214/docker-compose.yml deleted file mode 100644 index 68bc28c6..00000000 --- a/apps/libretv/202506082214/docker-compose.yml +++ /dev/null @@ -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 \ No newline at end of file diff --git a/apps/libretv/202506082214/data.yml b/apps/libretv/202506102250/data.yml similarity index 61% rename from apps/libretv/202506082214/data.yml rename to apps/libretv/202506102250/data.yml index 48a6984c..2be2c12d 100644 --- a/apps/libretv/202506082214/data.yml +++ b/apps/libretv/202506102250/data.yml @@ -1,18 +1,25 @@ additionalProperties: formFields: - - default: 8899 # HTTP端口默认值 + # HTTP 端口 + - default: 8899 envKey: PANEL_APP_PORT_HTTP + labelZh: HTTP端口 labelEn: HTTP Port - labelZh: HTTP 端口 required: true edit: true rule: paramPort type: number - - default: "111111" # 访问密码默认值 + + # 访问密码 + - default: "111111" envKey: PANEL_APP_PASSWORD - labelEn: Access Password labelZh: 访问密码 + labelEn: Access Password required: true edit: true - rule: paramComplexity - type: password \ No newline at end of file + rule: passwordStrength + type: password + + + + diff --git a/apps/libretv/202506102250/docker-compose.yml b/apps/libretv/202506102250/docker-compose.yml new file mode 100644 index 00000000..cd17edb1 --- /dev/null +++ b/apps/libretv/202506102250/docker-compose.yml @@ -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 \ No newline at end of file