diff --git a/apps/ddns-go/6.6.3/.env.sample b/apps/ddns-go/6.6.3/.env.sample new file mode 100644 index 00000000..fd350535 --- /dev/null +++ b/apps/ddns-go/6.6.3/.env.sample @@ -0,0 +1,3 @@ +CONTAINER_NAME="ddns-go" +PANEL_APP_PORT_HTTP="9876" +DATA_PATH="./data" \ No newline at end of file diff --git a/apps/ddns-go/6.6.3/data.yml b/apps/ddns-go/6.6.3/data.yml new file mode 100644 index 00000000..e47981d1 --- /dev/null +++ b/apps/ddns-go/6.6.3/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 \ No newline at end of file diff --git a/apps/ddns-go/6.6.3/docker-compose.yml b/apps/ddns-go/6.6.3/docker-compose.yml new file mode 100644 index 00000000..13f79208 --- /dev/null +++ b/apps/ddns-go/6.6.3/docker-compose.yml @@ -0,0 +1,10 @@ +services: + ddns-go: + container_name: ${CONTAINER_NAME} + restart: always + network_mode: "host" + volumes: + - "${DATA_PATH}:/root" + image: jeessy/ddns-go:v6.6.3 + labels: + createdBy: "Apps"