mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-12-12 20:02:22 +08:00
Merge remote-tracking branch 'origin/custom' into custom
This commit is contained in:
commit
5653d7b478
6
appstore/dashdot-gpu/5.9.0/.env
Normal file
6
appstore/dashdot-gpu/5.9.0/.env
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=3001
|
||||||
|
|
||||||
|
# 启用 CPU 温度 [必填]
|
||||||
|
DASHDOT_ENABLE_CPU_TEMPS=true
|
||||||
|
|
22
appstore/dashdot-gpu/5.9.0/data.yml
Normal file
22
appstore/dashdot-gpu/5.9.0/data.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: 3001
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelZh: WebUI 端口
|
||||||
|
labelEn: WebUI port
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: "true"
|
||||||
|
edit: true
|
||||||
|
envKey: DASHDOT_ENABLE_CPU_TEMPS
|
||||||
|
labelZh: 启用 CPU 温度
|
||||||
|
labelEn: Enable CPU temps
|
||||||
|
required: true
|
||||||
|
type: select
|
||||||
|
values:
|
||||||
|
- label: 启用
|
||||||
|
value: "true"
|
||||||
|
- label: 禁用
|
||||||
|
value: "false"
|
28
appstore/dashdot-gpu/5.9.0/docker-compose.yml
Normal file
28
appstore/dashdot-gpu/5.9.0/docker-compose.yml
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
dashdot:
|
||||||
|
container_name: dashdot-gpu
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
reservations:
|
||||||
|
devices:
|
||||||
|
- capabilities:
|
||||||
|
- gpu
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- DASHDOT_WIDGET_LIST=os,cpu,storage,ram,network,gpu
|
||||||
|
image: mauricenino/dashdot:nvidia-5.9.0
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:3001
|
||||||
|
privileged: true
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- /:/mnt/host:ro
|
2
appstore/dashdot-gpu/5.9.0/envs/default.env
Normal file
2
appstore/dashdot-gpu/5.9.0/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
appstore/dashdot-gpu/5.9.0/envs/global.env
Normal file
2
appstore/dashdot-gpu/5.9.0/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
17
appstore/dashdot-gpu/5.9.0/scripts/init.sh
Normal file
17
appstore/dashdot-gpu/5.9.0/scripts/init.sh
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -f .env ]; then
|
||||||
|
source .env
|
||||||
|
|
||||||
|
# setup-1 add default values
|
||||||
|
CURRENT_DIR=$(pwd)
|
||||||
|
sed -i '/^ENV_FILE=/d' .env
|
||||||
|
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||||
|
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||||
|
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||||
|
|
||||||
|
echo "Check Finish."
|
||||||
|
|
||||||
|
else
|
||||||
|
echo "Error: .env file not found."
|
||||||
|
fi
|
10
appstore/dashdot-gpu/5.9.0/scripts/uninstall.sh
Normal file
10
appstore/dashdot-gpu/5.9.0/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
|
17
appstore/dashdot-gpu/5.9.0/scripts/upgrade.sh
Normal file
17
appstore/dashdot-gpu/5.9.0/scripts/upgrade.sh
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -f .env ]; then
|
||||||
|
source .env
|
||||||
|
|
||||||
|
# setup-1 add default values
|
||||||
|
CURRENT_DIR=$(pwd)
|
||||||
|
sed -i '/^ENV_FILE=/d' .env
|
||||||
|
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||||
|
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||||
|
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||||
|
|
||||||
|
echo "Check Finish."
|
||||||
|
|
||||||
|
else
|
||||||
|
echo "Error: .env file not found."
|
||||||
|
fi
|
33
appstore/dashdot-gpu/README.md
Normal file
33
appstore/dashdot-gpu/README.md
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
# Dash. (GPU支持)
|
||||||
|
|
||||||
|
一个简单、现代的服务器仪表板,主要用于较小的私人服务器
|
||||||
|
|
||||||
|
![Dash.](https://file.lifebus.top/imgs/dashdot_cover.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)
|
||||||
|
|
||||||
|
## 安装说明
|
||||||
|
|
||||||
|
<div style="border: 1px solid #FFC107; padding: 10px; border-radius: 5px; color: #856404; background-color: #FFF3CD; display: inline-block; width: 100%; max-width: 60%; margin-top: 10px;">
|
||||||
|
<div style="display: flex; align-items: center;">
|
||||||
|
<span style="font-size: 24px; margin-right: 8px;">⚠️</span>
|
||||||
|
<div>
|
||||||
|
<strong style="font-size: 16px;">警告</strong><br>
|
||||||
|
<span style="font-size: 14px; color: #333;">该应用申请使用 `特权模式`, 将允许应用在容器内部执行特权操作,如挂载宿主机目录、访问宿主机设备等。</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div style="border: 1px solid #FFC107; padding: 10px; border-radius: 5px; color: #856404; background-color: #FFF3CD; display: inline-block; width: 100%; max-width: 60%; margin-top: 10px;">
|
||||||
|
<div style="display: flex; align-items: center;">
|
||||||
|
<span style="font-size: 24px; margin-right: 8px;">⚠️</span>
|
||||||
|
<div>
|
||||||
|
<strong style="font-size: 16px;">警告</strong><br>
|
||||||
|
<span style="font-size: 14px; color: #333;">该应用申请挂载 `根目录`, 该容器将可以访问主机上的所有目录以及文件</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
|
14
appstore/dashdot-gpu/data.yml
Normal file
14
appstore/dashdot-gpu/data.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
additionalProperties:
|
||||||
|
key: dashdot-gpu
|
||||||
|
name: Dash. (GPU支持)
|
||||||
|
tags:
|
||||||
|
- WebSite
|
||||||
|
- Local
|
||||||
|
shortDescZh: 现代服务器仪表板
|
||||||
|
shortDescEn: Modern server dashboard
|
||||||
|
type: website
|
||||||
|
crossVersionUpdate: true
|
||||||
|
limit: 0
|
||||||
|
website: https://getdashdot.com/
|
||||||
|
github: https://github.com/MauriceNino/dashdot/
|
||||||
|
document: https://getdashdot.com/
|
BIN
appstore/dashdot-gpu/logo.png
Normal file
BIN
appstore/dashdot-gpu/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 111 KiB |
6
appstore/dashdot/5.9.0/.env
Normal file
6
appstore/dashdot/5.9.0/.env
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=3001
|
||||||
|
|
||||||
|
# 启用 CPU 温度 [必填]
|
||||||
|
DASHDOT_ENABLE_CPU_TEMPS=true
|
||||||
|
|
22
appstore/dashdot/5.9.0/data.yml
Normal file
22
appstore/dashdot/5.9.0/data.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: 3001
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelZh: WebUI 端口
|
||||||
|
labelEn: WebUI port
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: "true"
|
||||||
|
edit: true
|
||||||
|
envKey: DASHDOT_ENABLE_CPU_TEMPS
|
||||||
|
labelZh: 启用 CPU 温度
|
||||||
|
labelEn: Enable CPU temps
|
||||||
|
required: true
|
||||||
|
type: select
|
||||||
|
values:
|
||||||
|
- label: 启用
|
||||||
|
value: "true"
|
||||||
|
- label: 禁用
|
||||||
|
value: "false"
|
20
appstore/dashdot/5.9.0/docker-compose.yml
Normal file
20
appstore/dashdot/5.9.0/docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
dashdot:
|
||||||
|
container_name: dashdot
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
image: mauricenino/dashdot:5.9.0
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:3001
|
||||||
|
privileged: true
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- /:/mnt/host:ro
|
2
appstore/dashdot/5.9.0/envs/default.env
Normal file
2
appstore/dashdot/5.9.0/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
appstore/dashdot/5.9.0/envs/global.env
Normal file
2
appstore/dashdot/5.9.0/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
17
appstore/dashdot/5.9.0/scripts/init.sh
Normal file
17
appstore/dashdot/5.9.0/scripts/init.sh
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -f .env ]; then
|
||||||
|
source .env
|
||||||
|
|
||||||
|
# setup-1 add default values
|
||||||
|
CURRENT_DIR=$(pwd)
|
||||||
|
sed -i '/^ENV_FILE=/d' .env
|
||||||
|
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||||
|
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||||
|
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||||
|
|
||||||
|
echo "Check Finish."
|
||||||
|
|
||||||
|
else
|
||||||
|
echo "Error: .env file not found."
|
||||||
|
fi
|
10
appstore/dashdot/5.9.0/scripts/uninstall.sh
Normal file
10
appstore/dashdot/5.9.0/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
|
17
appstore/dashdot/5.9.0/scripts/upgrade.sh
Normal file
17
appstore/dashdot/5.9.0/scripts/upgrade.sh
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -f .env ]; then
|
||||||
|
source .env
|
||||||
|
|
||||||
|
# setup-1 add default values
|
||||||
|
CURRENT_DIR=$(pwd)
|
||||||
|
sed -i '/^ENV_FILE=/d' .env
|
||||||
|
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||||
|
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||||
|
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||||
|
|
||||||
|
echo "Check Finish."
|
||||||
|
|
||||||
|
else
|
||||||
|
echo "Error: .env file not found."
|
||||||
|
fi
|
33
appstore/dashdot/README.md
Normal file
33
appstore/dashdot/README.md
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
# Dash.
|
||||||
|
|
||||||
|
一个简单、现代的服务器仪表板,主要用于较小的私人服务器
|
||||||
|
|
||||||
|
![Dash.](https://file.lifebus.top/imgs/dashdot_cover.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)
|
||||||
|
|
||||||
|
## 安装说明
|
||||||
|
|
||||||
|
<div style="border: 1px solid #FFC107; padding: 10px; border-radius: 5px; color: #856404; background-color: #FFF3CD; display: inline-block; width: 100%; max-width: 60%; margin-top: 10px;">
|
||||||
|
<div style="display: flex; align-items: center;">
|
||||||
|
<span style="font-size: 24px; margin-right: 8px;">⚠️</span>
|
||||||
|
<div>
|
||||||
|
<strong style="font-size: 16px;">警告</strong><br>
|
||||||
|
<span style="font-size: 14px; color: #333;">该应用申请使用 `特权模式`, 将允许应用在容器内部执行特权操作,如挂载宿主机目录、访问宿主机设备等。</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div style="border: 1px solid #FFC107; padding: 10px; border-radius: 5px; color: #856404; background-color: #FFF3CD; display: inline-block; width: 100%; max-width: 60%; margin-top: 10px;">
|
||||||
|
<div style="display: flex; align-items: center;">
|
||||||
|
<span style="font-size: 24px; margin-right: 8px;">⚠️</span>
|
||||||
|
<div>
|
||||||
|
<strong style="font-size: 16px;">警告</strong><br>
|
||||||
|
<span style="font-size: 14px; color: #333;">该应用申请挂载 `根目录`, 该容器将可以访问主机上的所有目录以及文件</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
|
14
appstore/dashdot/data.yml
Normal file
14
appstore/dashdot/data.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
additionalProperties:
|
||||||
|
key: dashdot
|
||||||
|
name: Dash.
|
||||||
|
tags:
|
||||||
|
- WebSite
|
||||||
|
- Local
|
||||||
|
shortDescZh: 现代服务器仪表板
|
||||||
|
shortDescEn: Modern server dashboard
|
||||||
|
type: website
|
||||||
|
crossVersionUpdate: true
|
||||||
|
limit: 0
|
||||||
|
website: https://getdashdot.com/
|
||||||
|
github: https://github.com/MauriceNino/dashdot/
|
||||||
|
document: https://getdashdot.com/
|
BIN
appstore/dashdot/logo.png
Normal file
BIN
appstore/dashdot/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 111 KiB |
6
dockge/dashdot-gpu/.env
Normal file
6
dockge/dashdot-gpu/.env
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=3001
|
||||||
|
|
||||||
|
# 启用 CPU 温度 [必填]
|
||||||
|
DASHDOT_ENABLE_CPU_TEMPS=true
|
||||||
|
|
28
dockge/dashdot-gpu/docker-compose.yml
Normal file
28
dockge/dashdot-gpu/docker-compose.yml
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
dashdot:
|
||||||
|
container_name: dashdot-gpu
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
reservations:
|
||||||
|
devices:
|
||||||
|
- capabilities:
|
||||||
|
- gpu
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- DASHDOT_WIDGET_LIST=os,cpu,storage,ram,network,gpu
|
||||||
|
image: mauricenino/dashdot:nvidia-5.9.0
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:3001
|
||||||
|
privileged: true
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- /:/mnt/host:ro
|
2
dockge/dashdot-gpu/envs/default.env
Normal file
2
dockge/dashdot-gpu/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
dockge/dashdot-gpu/envs/global.env
Normal file
2
dockge/dashdot-gpu/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
6
dockge/dashdot/.env
Normal file
6
dockge/dashdot/.env
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=3001
|
||||||
|
|
||||||
|
# 启用 CPU 温度 [必填]
|
||||||
|
DASHDOT_ENABLE_CPU_TEMPS=true
|
||||||
|
|
20
dockge/dashdot/docker-compose.yml
Normal file
20
dockge/dashdot/docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
dashdot:
|
||||||
|
container_name: dashdot
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
image: mauricenino/dashdot:5.9.0
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:3001
|
||||||
|
privileged: true
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- /:/mnt/host:ro
|
2
dockge/dashdot/envs/default.env
Normal file
2
dockge/dashdot/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
dockge/dashdot/envs/global.env
Normal file
2
dockge/dashdot/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
Loading…
Reference in New Issue
Block a user