Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2026-05-26 10:00:52 +00:00
parent db523e6299
commit df0fef8415
41 changed files with 101 additions and 101 deletions
@@ -15,7 +15,7 @@ services:
- BH_DB_PATH=/app/data/baihu.db - BH_DB_PATH=/app/data/baihu.db
- BH_DB_TABLE_PREFIX=baihu_ - BH_DB_TABLE_PREFIX=baihu_
- BH_DB_NAME=baihu - BH_DB_NAME=baihu
image: ghcr.io/engigu/baihu:1.1.4 image: ghcr.io/engigu/baihu:1.1.5
labels: labels:
createdBy: Apps createdBy: Apps
logging: logging:
@@ -6,7 +6,7 @@ services:
container_name: nezha container_name: nezha
environment: environment:
- TZ=Asia/Shanghai - TZ=Asia/Shanghai
image: ghcr.io/nezhahq/nezha:v2.0.13 image: ghcr.io/nezhahq/nezha:v2.0.14
labels: labels:
createdBy: Apps createdBy: Apps
networks: networks:
@@ -12,7 +12,7 @@ services:
- UMASK=022 - UMASK=022
- WEBUI_PORT=${PANEL_APP_PORT_HTTP} - WEBUI_PORT=${PANEL_APP_PORT_HTTP}
- TORRENTING_PORT=${PANEL_APP_PORT_TORRENTING} - TORRENTING_PORT=${PANEL_APP_PORT_TORRENTING}
image: linuxserver/qbittorrent:5.2.0 image: linuxserver/qbittorrent:5.2.1
labels: labels:
createdBy: Apps createdBy: Apps
network_mode: ${NETWORK_MODE} network_mode: ${NETWORK_MODE}
+1 -1
View File
@@ -15,7 +15,7 @@ services:
- BH_DB_PATH=/app/data/baihu.db - BH_DB_PATH=/app/data/baihu.db
- BH_DB_TABLE_PREFIX=baihu_ - BH_DB_TABLE_PREFIX=baihu_
- BH_DB_NAME=baihu - BH_DB_NAME=baihu
image: ghcr.io/engigu/baihu:1.1.4 image: ghcr.io/engigu/baihu:1.1.5
labels: labels:
createdBy: Apps createdBy: Apps
logging: logging:
+27
View File
@@ -4,3 +4,30 @@ NEZHA_ROOT_PATH=/home/nezha
# WebUI 端口 [必填] # WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=8008 PANEL_APP_PORT_HTTP=8008
# gRPC 端口 [必填]
PANEL_APP_PORT_GRPC=5555
# OAuth 服务商 [必填]
OAUTH2_TYPE=github
# 管理员账号ID [必填]
OAUTH2_ADMIN=
# OAuth 客户端 ID [必填]
OAUTH2_CLIENTID=
# OAuth 客户端 Secret [必填]
OAUTH2_CLIENTSECRET=
# OAuth 端点 (可选)
OAUTH2_ENDPOINT=
# 网站标题 [必填]
NZ_SITE_TITLE=哪吒监控
# Cookie 名称 (默认) [必填]
NZ_COOKIE_NAME=nezha-dashboard
# 网站主题 (默认) [必填]
NZ_THEME=default
+32 -5
View File
@@ -1,6 +1,33 @@
debug: false debug: false
listen_port: 8008 httpport: 80
language: zh_CN language: zh-CN
site_name: "nz_site_title" grpcport: nz_grpc_port
install_host: 127.0.0.1:8008 oauth2:
tls: false type: "nz_oauth2_type"
admin: "nz_admin_logins"
clientid: "nz_github_oauth_client_id"
clientsecret: "nz_github_oauth_client_secret"
endpoint: ""
site:
brand: "nz_site_title"
cookiename: "nezha-dashboard"
theme: "default"
ddns:
enable: false
provider: "webhook"
accessid: ""
accesssecret: ""
webhookmethod: ""
webhookurl: ""
webhookrequestbody: ""
webhookheaders: ""
maxretries: 3
profiles:
example:
provider: ""
accessid: ""
accesssecret: ""
webhookmethod: ""
webhookurl: ""
webhookrequestbody: ""
webhookheaders: ""
+7 -5
View File
@@ -2,17 +2,19 @@ networks:
1panel-network: 1panel-network:
external: true external: true
services: services:
nezha: nezha-dashboard:
container_name: nezha container_name: nezha
environment: image: ghcr.io/naiba/nezha-dashboard:v0.20.13
- TZ=Asia/Shanghai
image: ghcr.io/nezhahq/nezha:v2.0.13
labels: labels:
createdBy: Apps createdBy: Apps
networks: networks:
- 1panel-network - 1panel-network
ports: ports:
- ${PANEL_APP_PORT_HTTP}:8008 - ${PANEL_APP_PORT_HTTP}:80
- ${PANEL_APP_PORT_GRPC}:${PANEL_APP_PORT_GRPC}
restart: always restart: always
volumes: volumes:
- ${NEZHA_ROOT_PATH}/data:/dashboard/data - ${NEZHA_ROOT_PATH}/data:/dashboard/data
- ${NEZHA_ROOT_PATH}/static-custom/static:/dashboard/resource/static/custom
- ${NEZHA_ROOT_PATH}/theme-custom/template:/dashboard/resource/template/theme-custom
- ${NEZHA_ROOT_PATH}/dashboard-custom/template:/dashboard/resource/template/dashboard-custom
-33
View File
@@ -1,33 +0,0 @@
# 数据持久化路径 [必填]
NEZHA_ROOT_PATH=/home/nezha
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=8008
# gRPC 端口 [必填]
PANEL_APP_PORT_GRPC=5555
# OAuth 服务商 [必填]
OAUTH2_TYPE=github
# 管理员账号ID [必填]
OAUTH2_ADMIN=
# OAuth 客户端 ID [必填]
OAUTH2_CLIENTID=
# OAuth 客户端 Secret [必填]
OAUTH2_CLIENTSECRET=
# OAuth 端点 (可选)
OAUTH2_ENDPOINT=
# 网站标题 [必填]
NZ_SITE_TITLE=哪吒监控
# Cookie 名称 (默认) [必填]
NZ_COOKIE_NAME=nezha-dashboard
# 网站主题 (默认) [必填]
NZ_THEME=default
@@ -1,33 +0,0 @@
debug: false
httpport: 80
language: zh-CN
grpcport: nz_grpc_port
oauth2:
type: "nz_oauth2_type"
admin: "nz_admin_logins"
clientid: "nz_github_oauth_client_id"
clientsecret: "nz_github_oauth_client_secret"
endpoint: ""
site:
brand: "nz_site_title"
cookiename: "nezha-dashboard"
theme: "default"
ddns:
enable: false
provider: "webhook"
accessid: ""
accesssecret: ""
webhookmethod: ""
webhookurl: ""
webhookrequestbody: ""
webhookheaders: ""
maxretries: 3
profiles:
example:
provider: ""
accessid: ""
accesssecret: ""
webhookmethod: ""
webhookurl: ""
webhookrequestbody: ""
webhookheaders: ""
-20
View File
@@ -1,20 +0,0 @@
networks:
1panel-network:
external: true
services:
nezha-dashboard:
container_name: nezha
image: ghcr.io/naiba/nezha-dashboard:v0.20.13
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:80
- ${PANEL_APP_PORT_GRPC}:${PANEL_APP_PORT_GRPC}
restart: always
volumes:
- ${NEZHA_ROOT_PATH}/data:/dashboard/data
- ${NEZHA_ROOT_PATH}/static-custom/static:/dashboard/resource/static/custom
- ${NEZHA_ROOT_PATH}/theme-custom/template:/dashboard/resource/template/theme-custom
- ${NEZHA_ROOT_PATH}/dashboard-custom/template:/dashboard/resource/template/dashboard-custom
+6
View File
@@ -0,0 +1,6 @@
# 数据持久化路径 [必填]
NEZHA_ROOT_PATH=/home/nezha
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=8008
@@ -0,0 +1,6 @@
debug: false
listen_port: 8008
language: zh_CN
site_name: "nz_site_title"
install_host: 127.0.0.1:8008
tls: false
+18
View File
@@ -0,0 +1,18 @@
networks:
1panel-network:
external: true
services:
nezha:
container_name: nezha
environment:
- TZ=Asia/Shanghai
image: ghcr.io/nezhahq/nezha:v2.0.14
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8008
restart: always
volumes:
- ${NEZHA_ROOT_PATH}/data:/dashboard/data
@@ -12,7 +12,7 @@ services:
- UMASK=022 - UMASK=022
- WEBUI_PORT=${PANEL_APP_PORT_HTTP} - WEBUI_PORT=${PANEL_APP_PORT_HTTP}
- TORRENTING_PORT=${PANEL_APP_PORT_TORRENTING} - TORRENTING_PORT=${PANEL_APP_PORT_TORRENTING}
image: linuxserver/qbittorrent:5.2.0 image: linuxserver/qbittorrent:5.2.1
labels: labels:
createdBy: Apps createdBy: Apps
network_mode: ${NETWORK_MODE} network_mode: ${NETWORK_MODE}