diff --git a/apps/puff/README.md b/apps/puff/README.md new file mode 100644 index 000000000000..c9a5b7814cba --- /dev/null +++ b/apps/puff/README.md @@ -0,0 +1,10 @@ +# Puff + +- 开源、快速、便捷、基于Go的域名监控程序。 + +# 默认账号密码 +- 账号:admin +- 密码:admin + +# Whois 参考列表 +- [roy.wang/whois](https://roy.wang/whois/) \ No newline at end of file diff --git a/apps/puff/data.yml b/apps/puff/data.yml new file mode 100644 index 000000000000..8f403ae75d0e --- /dev/null +++ b/apps/puff/data.yml @@ -0,0 +1,20 @@ +name: puff +tags: + - 工具 +title: 一个Go的域名监控程序 +type: 工具 +description: 一个Go的域名监控程序 +additionalProperties: + key: puff + name: puff + tags: + - Tool + shortDescZh: 一个Go的域名监控程序 + shortDescEn: A Go domain monitor + type: tool + crossVersionUpdate: true + limit: 0 + recommend: 0 + website: https://github.com/BitAUR/Puff + github: https://github.com/BitAUR/Puff + document: https://roy.wang/puff/ diff --git a/apps/puff/latest/.env.sample b/apps/puff/latest/.env.sample new file mode 100644 index 000000000000..77ae1d702873 --- /dev/null +++ b/apps/puff/latest/.env.sample @@ -0,0 +1,2 @@ +CONTAINER_NAME="puff" +PANEL_APP_PORT_HTTP="8080" diff --git a/apps/puff/latest/data.yml b/apps/puff/latest/data.yml new file mode 100644 index 000000000000..6a4f6b625679 --- /dev/null +++ b/apps/puff/latest/data.yml @@ -0,0 +1,10 @@ +additionalProperties: + formFields: + - default: 8080 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: Port + labelZh: 端口 + required: true + rule: paramPort + type: number \ No newline at end of file diff --git a/apps/puff/latest/docker-compose.yml b/apps/puff/latest/docker-compose.yml new file mode 100644 index 000000000000..5e1a1b273705 --- /dev/null +++ b/apps/puff/latest/docker-compose.yml @@ -0,0 +1,18 @@ +version: '3' +services: + puff: + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - "${PANEL_APP_PORT_HTTP}:8080" + volumes: + - /data/puff:/data + image: bitaur/puff:latest + labels: + createdBy: "Apps" + +networks: + 1panel-network: + external: true diff --git a/apps/puff/logo.png b/apps/puff/logo.png new file mode 100644 index 000000000000..d40330096c58 Binary files /dev/null and b/apps/puff/logo.png differ