From 320810d0ff90e67fd48e6fa2e453443a41f1aabb Mon Sep 17 00:00:00 2001 From: pooneyy <85266337+pooneyy@users.noreply.github.com> Date: Thu, 2 Oct 2025 22:24:06 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(picx):=20add=20version=203.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/picx/3.0.2/.env.sample | 3 +++ apps/picx/3.0.2/data.yml | 17 +++++++++++++++++ apps/picx/3.0.2/docker-compose.yml | 17 +++++++++++++++++ 3 files changed, 37 insertions(+) create mode 100644 apps/picx/3.0.2/.env.sample create mode 100644 apps/picx/3.0.2/data.yml create mode 100644 apps/picx/3.0.2/docker-compose.yml diff --git a/apps/picx/3.0.2/.env.sample b/apps/picx/3.0.2/.env.sample new file mode 100644 index 000000000..62beff7c6 --- /dev/null +++ b/apps/picx/3.0.2/.env.sample @@ -0,0 +1,3 @@ +CONTAINER_NAME="picx" +PANEL_APP_PORT_HTTP="40131" +DATA_PATH="./data" diff --git a/apps/picx/3.0.2/data.yml b/apps/picx/3.0.2/data.yml new file mode 100644 index 000000000..83d6a4238 --- /dev/null +++ b/apps/picx/3.0.2/data.yml @@ -0,0 +1,17 @@ +additionalProperties: + formFields: + - default: 40131 + 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 diff --git a/apps/picx/3.0.2/docker-compose.yml b/apps/picx/3.0.2/docker-compose.yml new file mode 100644 index 000000000..aa4fb5bec --- /dev/null +++ b/apps/picx/3.0.2/docker-compose.yml @@ -0,0 +1,17 @@ +services: + picx: + image: ghcr.io/pooneyy/picx:3.0.2 + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - "${PANEL_APP_PORT_HTTP}:80" + volumes: + - ${DATA_PATH}:/usr/share/nginx/html + labels: + createdBy: "Apps" + +networks: + 1panel-network: + external: true