From 88908d0d6efc9a463b29b7d04b022f1316f3cf26 Mon Sep 17 00:00:00 2001 From: okxlin <61420215+okxlin@users.noreply.github.com> Date: Sun, 12 Apr 2026 21:50:02 +0800 Subject: [PATCH] fix(apps): remove nested version directories --- apps/easytier/2.5.0/2.0.2/.env.sample | 6 - apps/easytier/2.5.0/2.0.2/data.yml | 37 ------ apps/easytier/2.5.0/2.0.2/docker-compose.yml | 15 --- apps/grafana/12.4.2/10.4.3/.env.sample | 2 - apps/grafana/12.4.2/10.4.3/data.yml | 10 -- apps/grafana/12.4.2/10.4.3/docker-compose.yml | 18 --- apps/palworld-server/2.3.1/2.3.0/.env.sample | 15 --- apps/palworld-server/2.3.1/2.3.0/data.yml | 108 ------------------ .../2.3.1/2.3.0/docker-compose.yml | 35 ------ 9 files changed, 246 deletions(-) delete mode 100644 apps/easytier/2.5.0/2.0.2/.env.sample delete mode 100644 apps/easytier/2.5.0/2.0.2/data.yml delete mode 100644 apps/easytier/2.5.0/2.0.2/docker-compose.yml delete mode 100644 apps/grafana/12.4.2/10.4.3/.env.sample delete mode 100644 apps/grafana/12.4.2/10.4.3/data.yml delete mode 100644 apps/grafana/12.4.2/10.4.3/docker-compose.yml delete mode 100644 apps/palworld-server/2.3.1/2.3.0/.env.sample delete mode 100644 apps/palworld-server/2.3.1/2.3.0/data.yml delete mode 100644 apps/palworld-server/2.3.1/2.3.0/docker-compose.yml diff --git a/apps/easytier/2.5.0/2.0.2/.env.sample b/apps/easytier/2.5.0/2.0.2/.env.sample deleted file mode 100644 index 2ad05e7c7..000000000 --- a/apps/easytier/2.5.0/2.0.2/.env.sample +++ /dev/null @@ -1,6 +0,0 @@ -COMMAND="-i 10.144.144.1 --network-name abc --network-secret abc -p tcp://public.easytier.top:11010" -CONTAINER_NAME="easytier" -DATA_PATH="./data/data" -HOSTNAME="easytier" -PRIVILEGED_MODE="true" -TIME_ZONE="Asia/Shanghai" diff --git a/apps/easytier/2.5.0/2.0.2/data.yml b/apps/easytier/2.5.0/2.0.2/data.yml deleted file mode 100644 index f2d753b69..000000000 --- a/apps/easytier/2.5.0/2.0.2/data.yml +++ /dev/null @@ -1,37 +0,0 @@ -additionalProperties: - formFields: - - default: "./data" - edit: true - envKey: DATA_PATH - labelEn: Data Path - labelZh: 数据路径 - required: true - type: text - - default: "Asia/Shanghai" - edit: true - envKey: TIME_ZONE - labelEn: Time Zone - labelZh: 时区 - required: true - type: text - - default: "true" - disabled: true - envKey: PRIVILEGED_MODE - labelEn: Privilege mode switch - labelZh: 特权模式开关 - required: true - type: text - - default: "easytier" - edit: true - envKey: HOSTNAME - labelEn: Hostname - labelZh: 主机名 - required: true - type: text - - default: "-i --network-name <用户> --network-secret <密码> -e tcp://<服务器地址>:11010 -l <监听地址>" - edit: true - envKey: COMMAND - labelEn: Command (modified as required) - labelZh: 命令 (按需修改) - required: true - type: text diff --git a/apps/easytier/2.5.0/2.0.2/docker-compose.yml b/apps/easytier/2.5.0/2.0.2/docker-compose.yml deleted file mode 100644 index 6831d9e19..000000000 --- a/apps/easytier/2.5.0/2.0.2/docker-compose.yml +++ /dev/null @@ -1,15 +0,0 @@ -services: - easytier: - image: "easytier/easytier:v2.5.0" - container_name: ${CONTAINER_NAME} - restart: always - network_mode: host - privileged: ${PRIVILEGED_MODE} - hostname: ${HOSTNAME} - environment: - - TZ=${TIME_ZONE} - volumes: - - ${DATA_PATH}:/root - command: ${COMMAND} - labels: - createdBy: "Apps" diff --git a/apps/grafana/12.4.2/10.4.3/.env.sample b/apps/grafana/12.4.2/10.4.3/.env.sample deleted file mode 100644 index a95e878a4..000000000 --- a/apps/grafana/12.4.2/10.4.3/.env.sample +++ /dev/null @@ -1,2 +0,0 @@ -CONTAINER_NAME="grafana" -PANEL_APP_PORT_HTTP="40038" \ No newline at end of file diff --git a/apps/grafana/12.4.2/10.4.3/data.yml b/apps/grafana/12.4.2/10.4.3/data.yml deleted file mode 100644 index 61cafff89..000000000 --- a/apps/grafana/12.4.2/10.4.3/data.yml +++ /dev/null @@ -1,10 +0,0 @@ -additionalProperties: - formFields: - - default: 40038 - edit: true - envKey: PANEL_APP_PORT_HTTP - labelEn: Port - labelZh: 端口 - required: true - rule: paramPort - type: number diff --git a/apps/grafana/12.4.2/10.4.3/docker-compose.yml b/apps/grafana/12.4.2/10.4.3/docker-compose.yml deleted file mode 100644 index 240654b94..000000000 --- a/apps/grafana/12.4.2/10.4.3/docker-compose.yml +++ /dev/null @@ -1,18 +0,0 @@ -services: - grafana: - container_name: ${CONTAINER_NAME} - restart: always - networks: - - 1panel-network - ports: - - "${PANEL_APP_PORT_HTTP}:3000" - volumes: - - ./data:/var/lib/grafana - user: '0' - image: grafana/grafana:12.4.2 - labels: - createdBy: "Apps" - -networks: - 1panel-network: - external: true diff --git a/apps/palworld-server/2.3.1/2.3.0/.env.sample b/apps/palworld-server/2.3.1/2.3.0/.env.sample deleted file mode 100644 index ba88edca6..000000000 --- a/apps/palworld-server/2.3.1/2.3.0/.env.sample +++ /dev/null @@ -1,15 +0,0 @@ -CONTAINER_NAME="palworld-server" -PANEL_APP_PORT_HTTP="8211" -PANEL_APP_PORT_RCON="25575" -PANEL_APP_PORT_QUERY="27015" -DATA_PATH="./data" -MAX_PLAYERS="32" -MULTITHREAD_SWITCH="true" -PUBLIC_SWITCH="false" -PUBLIC_IP="" -PANEL_APP_PORT_PUBLIC="" -UPDATE_SWITCH="true" -SERVER_NAME="Default Palworld Server" -ADMIN_PASSWORD="palworld" -SERVER_PASSWORD="" -RCON_SWITCH="false" diff --git a/apps/palworld-server/2.3.1/2.3.0/data.yml b/apps/palworld-server/2.3.1/2.3.0/data.yml deleted file mode 100644 index 70365ebbb..000000000 --- a/apps/palworld-server/2.3.1/2.3.0/data.yml +++ /dev/null @@ -1,108 +0,0 @@ -additionalProperties: - formFields: - - default: 8211 - edit: true - envKey: PANEL_APP_PORT_HTTP - labelEn: Port - labelZh: 端口 - required: true - rule: paramPort - type: number - - default: 25575 - edit: true - envKey: PANEL_APP_PORT_RCON - labelEn: RCON Port - labelZh: RCON 端口 - required: true - rule: paramPort - type: number - - default: 27015 - edit: true - envKey: PANEL_APP_PORT_QUERY - labelEn: Query port used to communicate with Steam servers - labelZh: Query 端口 (用于与 Steam 服务器通信的查询端口) - required: true - rule: paramPort - type: number - - default: ./data - edit: true - envKey: DATA_PATH - labelEn: Data folder path - labelZh: 数据文件夹路径 - required: true - type: text - - default: 32 - edit: true - envKey: MAX_PLAYERS - labelEn: Maximum number of participants on the server - labelZh: 玩家数量限制 - required: true - rule: paramPort - type: number - - default: 'true' - edit: true - envKey: MULTITHREAD_SWITCH - labelEn: Improves performance in multi-threaded CPU environments (true / false) - labelZh: 是否启用 CPU 多线程优化 (true / false) - required: true - type: text - - default: 'false' - edit: true - envKey: PUBLIC_SWITCH - labelEn: Setup server as a community server (true / false) - labelZh: 是否将服务器设置为社区服务器 (true / false) - required: true - type: text - - default: '' - edit: true - envKey: PUBLIC_IP - labelEn: PUBLIC IP (If not specified, it will be detected automatically) - labelZh: 服务器 IP (留空自动检测) - required: false - type: text - - default: '' - edit: true - envKey: PANEL_APP_PORT_PUBLIC - labelEn: PUBLIC PORT (If not specified, it will be detected automatically) - labelZh: 服务器端口 (留空自动检测) - required: false - rule: paramPort - type: text - - default: 'true' - disabled: true - envKey: UPDATE_SWITCH - labelEn: Whether the server should be update each time start (true / false) - labelZh: 是否每次启动都更新服务器 (true / false) - required: true - type: text - - default: 'Default Palworld Server' - edit: true - envKey: SERVER_NAME - labelEn: Server name - labelZh: 服务器名 - required: true - type: text - - default: palworld - edit: true - envKey: ADMIN_PASSWORD - labelEn: Admin password - labelZh: 管理员密码 - random: true - required: false - rule: paramComplexity - type: password - - default: '' - edit: true - envKey: SERVER_PASSWORD - labelEn: Server password - labelZh: 服务器密码 - required: false - rule: paramComplexity - type: password - - default: 'false' - edit: true - envKey: RCON_SWITCH - labelEn: Enable RCON (true / false) - labelZh: 是否启用 RCON (true / false) - required: true - type: text diff --git a/apps/palworld-server/2.3.1/2.3.0/docker-compose.yml b/apps/palworld-server/2.3.1/2.3.0/docker-compose.yml deleted file mode 100644 index e351f4cb7..000000000 --- a/apps/palworld-server/2.3.1/2.3.0/docker-compose.yml +++ /dev/null @@ -1,35 +0,0 @@ -services: - palworld-server: - container_name: ${CONTAINER_NAME} - restart: always - networks: - - 1panel-network - ports: - - ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}/udp - - ${PANEL_APP_PORT_RCON}:${PANEL_APP_PORT_RCON}/tcp - - ${PANEL_APP_PORT_QUERY}:${PANEL_APP_PORT_QUERY}/udp - volumes: - - ${DATA_PATH}:/palworld/ - environment: - - PUID=1000 - - PGID=1000 - - PORT=${PANEL_APP_PORT_HTTP} - - PLAYERS=${MAX_PLAYERS} - - MULTITHREADING=${MULTITHREAD_SWITCH} - - COMMUNITY=${PUBLIC_SWITCH} - - PUBLIC_IP=${PUBLIC_IP} - - PUBLIC_PORT=${PANEL_APP_PORT_PUBLIC} - - UPDATE_ON_BOOT=${UPDATE_SWITCH} - - SERVER_NAME=${SERVER_NAME} - - ADMIN_PASSWORD=${ADMIN_PASSWORD} - - SERVER_PASSWORD=${SERVER_PASSWORD} - - RCON_ENABLED=${RCON_SWITCH} - - RCON_PORT=${PANEL_APP_PORT_RCON} - - QUERY_PORT=${PANEL_APP_PORT_QUERY} - image: thijsvanloef/palworld-server-docker:v2.3.1 - labels: - createdBy: "Apps" - -networks: - 1panel-network: - external: true