diff --git a/apps/libretv/202506092337/docker-compose.yml b/apps/libretv/202506092337/docker-compose.yml deleted file mode 100644 index ce892e9f..00000000 --- a/apps/libretv/202506092337/docker-compose.yml +++ /dev/null @@ -1,18 +0,0 @@ -services: - libretv: - container_name: ${CONTAINER_NAME} - image: bestzwei/libretv:latest - ports: - - ${PANEL_APP_PORT_HTTP}:8080 - environment: - - PASSWORD=${PANEL_APP_PASSWORD} - restart: unless-stopped - networks: - - 1panel-network - labels: - createdBy: "Apps" - -networks: - 1panel-network: - external: true - diff --git a/apps/libretv/202506092337/data.yml b/apps/libretv/202506102250/data.yml similarity index 91% rename from apps/libretv/202506092337/data.yml rename to apps/libretv/202506102250/data.yml index b6a35e06..2be2c12d 100644 --- a/apps/libretv/202506092337/data.yml +++ b/apps/libretv/202506102250/data.yml @@ -1,5 +1,6 @@ additionalProperties: formFields: + # HTTP 端口 - default: 8899 envKey: PANEL_APP_PORT_HTTP labelZh: HTTP端口 @@ -9,6 +10,7 @@ additionalProperties: rule: paramPort type: number + # 访问密码 - default: "111111" envKey: PANEL_APP_PASSWORD labelZh: 访问密码 @@ -20,3 +22,4 @@ additionalProperties: + 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