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