From 3f7fca9efcfab40c30b3ee6c1b1efbf475bc9188 Mon Sep 17 00:00:00 2001 From: pooneyy <85266337+pooneyy@users.noreply.github.com> Date: Mon, 15 Dec 2025 20:15:08 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(byte-muse):=20add=20arm=20vers?= =?UTF-8?q?ion=201.21.10=20app=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add new data.yml file with form fields for data path, webui port, and proxy settings - add new docker-compose.yml file defining the arm container service and network --- apps/byte-muse/1.21.10-arm/data.yml | 43 +++++++++++++++++++ apps/byte-muse/1.21.10-arm/docker-compose.yml | 21 +++++++++ 2 files changed, 64 insertions(+) create mode 100644 apps/byte-muse/1.21.10-arm/data.yml create mode 100644 apps/byte-muse/1.21.10-arm/docker-compose.yml diff --git a/apps/byte-muse/1.21.10-arm/data.yml b/apps/byte-muse/1.21.10-arm/data.yml new file mode 100644 index 000000000..bde91199a --- /dev/null +++ b/apps/byte-muse/1.21.10-arm/data.yml @@ -0,0 +1,43 @@ +additionalProperties: + formFields: + - default: "./data" + edit: true + envKey: AUTO_LADY_ROOT_PATH + labelZh: 数据持久化路径 + labelEn: Data persistence path + label: + en: Data persistence path + zh: 数据持久化路径 + required: true + type: text + - default: 8080 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelZh: WebUI 端口 + labelEn: WebUI port + label: + en: WebUI port + zh: WebUI 端口 + required: true + rule: paramPort + type: number + - default: "" + edit: true + envKey: HTTP_PROXY + labelZh: 网络代理地址 + labelEn: Network proxy address + label: + en: Network proxy address + zh: 网络代理地址 + required: false + type: text + - default: "localhost,127.0.0.1,::1,192.168.0.0/16,10.0.0.0/8,*.local" + edit: true + envKey: NO_PROXY + labelZh: 跳过代理地址 + labelEn: Skip proxy address + label: + en: Skip proxy address + zh: 跳过代理地址 + required: false + type: text diff --git a/apps/byte-muse/1.21.10-arm/docker-compose.yml b/apps/byte-muse/1.21.10-arm/docker-compose.yml new file mode 100644 index 000000000..58a66e6b9 --- /dev/null +++ b/apps/byte-muse/1.21.10-arm/docker-compose.yml @@ -0,0 +1,21 @@ +networks: + 1panel-network: + external: true + +services: + auto-lady: + image: envyafish/byte-muse_arm:1.21.10 + container_name: ${CONTAINER_NAME} + labels: + createdBy: "Apps" + restart: always + networks: + - 1panel-network + ports: + - ${PANEL_APP_PORT_HTTP}:80 + volumes: + - ${AUTO_LADY_ROOT_PATH}/config:/data + environment: + - HTTPS_PROXY=${HTTP_PROXY} + - HTTP_PROXY=${HTTP_PROXY:-} + - NO_PROXY=${NO_PROXY:-}