From fa5f7b7b29838edccae2ff783152652d1ee59d4b Mon Sep 17 00:00:00 2001 From: okxlin Date: Mon, 5 Jun 2023 00:00:18 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E9=87=8D=E5=91=BD=E5=90=8Dddns-go=205.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ddns-go/5.3.1/data.yml | 17 +++++++++++++++++ ddns-go/5.3.1/docker-compose.yml | 18 ++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 ddns-go/5.3.1/data.yml create mode 100644 ddns-go/5.3.1/docker-compose.yml diff --git a/ddns-go/5.3.1/data.yml b/ddns-go/5.3.1/data.yml new file mode 100644 index 00000000..55f5259f --- /dev/null +++ b/ddns-go/5.3.1/data.yml @@ -0,0 +1,17 @@ +additionalProperties: + formFields: + - default: 9876 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: WebUI 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/ddns-go/5.3.1/docker-compose.yml b/ddns-go/5.3.1/docker-compose.yml new file mode 100644 index 00000000..2a1bde45 --- /dev/null +++ b/ddns-go/5.3.1/docker-compose.yml @@ -0,0 +1,18 @@ +version: "3" +services: + ddns-go: + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - "${PANEL_APP_PORT_HTTP}:9876" + volumes: + - "${DATA_PATH}:/root" + image: jeessy/ddns-go:v5.3.1 + labels: + createdBy: "Apps" + +networks: + 1panel-network: + external: true