mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-13 09:26:57 +08:00
发布应用 Puff 域名监测平台
Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
This commit is contained in:
parent
2a0fb97f5d
commit
3250dba9b4
1
.github/README.md
vendored
1
.github/README.md
vendored
@ -131,6 +131,7 @@
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/pingvin-share/logo.png" width="22"/> | Pingvin Share | https://github.com/stonith404/pingvin-share/ | 一个集轻盈与美观于一体的自托管文件共享平台 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/postgresql/logo.png" width="22"/> | PostgreSQL | https://www.postgresql.org/ | 世界上最先进的开源关系数据库 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/prowlarr/logo.png" width="22"/> | Prowlarr | https://prowlarr.com/ | 终极索引器管理器 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/puff/logo.png" width="22"/> | Puff | https://github.com/BitAUR/Puff/ | 域名监控程序 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/qbittorrent/logo.png" width="22"/> | qBittorrent | https://www.qbittorrent.org/ | qBittorrent 比特流客户端 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/qinglong/logo.png" width="22"/> | 青龙 | https://qinglong.online/ | 【青龙】支持 Python3、JavaScript、Shell、Typescript 的定时任务管理平台 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/radarr/logo.png" width="22"/> | radarr | https://radarr.video/ | 电影组织者/管理员,适用于 Usenet 和 torrent 用户 | |
|
||||
|
@ -114,6 +114,7 @@
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/pingvin-share/logo.png" width="22"/> | Pingvin Share | https://github.com/stonith404/pingvin-share/ | 一个集轻盈与美观于一体的自托管文件共享平台 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/postgresql/logo.png" width="22"/> | PostgreSQL | https://www.postgresql.org/ | 世界上最先进的开源关系数据库 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/prowlarr/logo.png" width="22"/> | Prowlarr | https://prowlarr.com/ | 终极索引器管理器 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/puff/logo.png" width="22"/> | Puff | https://github.com/BitAUR/Puff/ | 域名监控程序 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/qbittorrent/logo.png" width="22"/> | qBittorrent | https://www.qbittorrent.org/ | qBittorrent 比特流客户端 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/qinglong/logo.png" width="22"/> | 青龙 | https://qinglong.online/ | 【青龙】支持 Python3、JavaScript、Shell、Typescript 的定时任务管理平台 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/radarr/logo.png" width="22"/> | radarr | https://radarr.video/ | 电影组织者/管理员,适用于 Usenet 和 torrent 用户 | |
|
||||
|
17
apps/puff/0.2.2/data.yml
Normal file
17
apps/puff/0.2.2/data.yml
Normal file
@ -0,0 +1,17 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "/home/puff"
|
||||
edit: true
|
||||
envKey: PUFF_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: 8080
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
20
apps/puff/0.2.2/docker-compose.yml
Normal file
20
apps/puff/0.2.2/docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
|
||||
services:
|
||||
puff:
|
||||
image: bitaur/puff:v0.2.2
|
||||
container_name: ${CONTAINER_NAME}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:8080
|
||||
env_file:
|
||||
- /etc/1panel/envs/global.env
|
||||
- ${ENV_FILE:-/etc/1panel/envs/default.env}
|
||||
volumes:
|
||||
- ${PUFF_ROOT_PATH}/data:/app/data
|
15
apps/puff/0.2.2/scripts/init.sh
Normal file
15
apps/puff/0.2.2/scripts/init.sh
Normal file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
10
apps/puff/0.2.2/scripts/uninstall.sh
Normal file
10
apps/puff/0.2.2/scripts/uninstall.sh
Normal file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
15
apps/puff/0.2.2/scripts/upgrade.sh
Normal file
15
apps/puff/0.2.2/scripts/upgrade.sh
Normal file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
22
apps/puff/README.md
Normal file
22
apps/puff/README.md
Normal file
@ -0,0 +1,22 @@
|
||||
# Puff
|
||||
|
||||
域名监控工具
|
||||
|
||||
![Puff](https://file.lifebus.top/imgs/puff_logo.png)
|
||||
|
||||
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
|
||||
|
||||
## 简介
|
||||
|
||||
### Puff - 开源的域名监控工具
|
||||
|
||||
> 2024-09-27 · PROJ · ROYWANG
|
||||
|
||||
昨天早上在群里吹水,关注的一个域名橘子已经回复会删除了,但多久删除没有底,想问问群里的大佬多久会删除,但是问了一圈都不知道,所以萌生了写一个域名监控的想法。
|
||||
|
||||
目前这个服务呢,仅支持监控域名掉落,不能负责抢注,但抢注更多的不是技术难题,而是别的方面。后续打算增加一个域名动态检测的功能,如果域名过期了、进入赎回期、待删除之类的,都可以提醒一下(已支持)。
|
||||
|
||||
---
|
||||
|
||||
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
|
||||
o
|
15
apps/puff/data.yml
Normal file
15
apps/puff/data.yml
Normal file
@ -0,0 +1,15 @@
|
||||
additionalProperties:
|
||||
key: Puff
|
||||
name: Puff
|
||||
tags:
|
||||
- WebSite
|
||||
- Tool
|
||||
- Local
|
||||
shortDescZh: 域名监控程序
|
||||
shortDescEn: Domain monitoring program
|
||||
type: website
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
website: https://github.com/BitAUR/Puff/
|
||||
github: https://github.com/BitAUR/Puff/
|
||||
document: https://github.com/BitAUR/Puff/
|
BIN
apps/puff/logo.png
Normal file
BIN
apps/puff/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
Loading…
Reference in New Issue
Block a user