Merge remote-tracking branch 'origin/custom' into custom

This commit is contained in:
新疆萌森软件开发工作室 2024-12-06 11:50:23 +08:00
commit 5653d7b478
30 changed files with 362 additions and 0 deletions

View File

@ -0,0 +1,6 @@
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=3001
# 启用 CPU 温度 [必填]
DASHDOT_ENABLE_CPU_TEMPS=true

View 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"

View 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

View File

@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

View 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

View File

@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

View 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

View 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)

View 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/

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

View File

@ -0,0 +1,6 @@
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=3001
# 启用 CPU 温度 [必填]
DASHDOT_ENABLE_CPU_TEMPS=true

View 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"

View 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

View File

@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

View 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

View File

@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

View 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

View 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
View 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

6
dockge/dashdot-gpu/.env Normal file
View File

@ -0,0 +1,6 @@
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=3001
# 启用 CPU 温度 [必填]
DASHDOT_ENABLE_CPU_TEMPS=true

View 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

View File

@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

6
dockge/dashdot/.env Normal file
View File

@ -0,0 +1,6 @@
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=3001
# 启用 CPU 温度 [必填]
DASHDOT_ENABLE_CPU_TEMPS=true

View 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

View File

@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai