From cb9c732c507d4800e34a05044b79ecff656a2862 Mon Sep 17 00:00:00 2001 From: wanghe Date: Sun, 3 Dec 2023 12:47:44 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20showdoc=20=E5=A2=9E=E5=8A=A0=20arm=20?= =?UTF-8?q?=E7=89=88=E6=9C=AC=20(#649)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- showdoc/arm-latest/data.yml | 9 +++++++++ showdoc/arm-latest/docker-compose.yml | 19 +++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100755 showdoc/arm-latest/data.yml create mode 100644 showdoc/arm-latest/docker-compose.yml diff --git a/showdoc/arm-latest/data.yml b/showdoc/arm-latest/data.yml new file mode 100755 index 000000000..1e1ccc915 --- /dev/null +++ b/showdoc/arm-latest/data.yml @@ -0,0 +1,9 @@ +additionalProperties: + formFields: + - default: 4999 + envKey: PANEL_APP_PORT_HTTP + labelEn: Port + labelZh: 端口 + required: true + rule: paramPort + type: number diff --git a/showdoc/arm-latest/docker-compose.yml b/showdoc/arm-latest/docker-compose.yml new file mode 100644 index 000000000..b997ae63d --- /dev/null +++ b/showdoc/arm-latest/docker-compose.yml @@ -0,0 +1,19 @@ +version: '3' +services: + showdoc: + image: star7th/showdoc:arm-latest + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - ${PANEL_APP_PORT_HTTP}:80 + tty: true + volumes: + - /showdoc_data:/showdoc_data_old + - ./showdocdata/html:/var/www/html + labels: + createdBy: "Apps" +networks: + 1panel-network: + external: true \ No newline at end of file