mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2025-02-03 00:07:59 +08:00
Processed apps directory via GitHub Actions
This commit is contained in:
parent
c11eec5466
commit
f75bb01c35
9
appstore/beszel-agent/0.9.1/.env
Normal file
9
appstore/beszel-agent/0.9.1/.env
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# 网络模式 [必填]
|
||||||
|
NETWORK_MODE=host
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=45876
|
||||||
|
|
||||||
|
# 公钥 (Hub端生成) [必填]
|
||||||
|
KEY=
|
||||||
|
|
33
appstore/beszel-agent/0.9.1/data.yml
Normal file
33
appstore/beszel-agent/0.9.1/data.yml
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "host"
|
||||||
|
edit: true
|
||||||
|
envKey: NETWORK_MODE
|
||||||
|
labelEn: Drive path
|
||||||
|
labelZh: 网络模式
|
||||||
|
required: true
|
||||||
|
type: select
|
||||||
|
values:
|
||||||
|
- label: 主机网络模式
|
||||||
|
value: "host"
|
||||||
|
- label: 桥接网络模式
|
||||||
|
value: "bridge"
|
||||||
|
- label: 无网络模式
|
||||||
|
value: "none"
|
||||||
|
- label: 1panel-network
|
||||||
|
value: "1panel-network"
|
||||||
|
- default: 45876
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelZh: WebUI 端口
|
||||||
|
labelEn: WebUI port
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: ""
|
||||||
|
edit: true
|
||||||
|
envKey: KEY
|
||||||
|
labelZh: 公钥 (Hub端生成)
|
||||||
|
labelEn: Public key (Generated by Hub)
|
||||||
|
required: true
|
||||||
|
type: text
|
22
appstore/beszel-agent/0.9.1/docker-compose.yml
Normal file
22
appstore/beszel-agent/0.9.1/docker-compose.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
beszel-agent:
|
||||||
|
container_name: beszel-agent
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- TZ=Asia/Shanghai
|
||||||
|
- LOG_LEVEL=info
|
||||||
|
- PORT=${PANEL_APP_PORT_HTTP:-45876}
|
||||||
|
image: henrygd/beszel-agent:0.9.1
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
network_mode: ${NETWORK_MODE:-host}
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
2
appstore/beszel-agent/0.9.1/envs/default.env
Normal file
2
appstore/beszel-agent/0.9.1/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
appstore/beszel-agent/0.9.1/envs/global.env
Normal file
2
appstore/beszel-agent/0.9.1/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
17
appstore/beszel-agent/0.9.1/scripts/init.sh
Normal file
17
appstore/beszel-agent/0.9.1/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/beszel-agent/0.9.1/scripts/uninstall.sh
Normal file
10
appstore/beszel-agent/0.9.1/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/beszel-agent/0.9.1/scripts/upgrade.sh
Normal file
17
appstore/beszel-agent/0.9.1/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
|
77
appstore/beszel-agent/README.md
Normal file
77
appstore/beszel-agent/README.md
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
# Beszel - 代理 (Agent)
|
||||||
|
|
||||||
|
轻量级的服务器监控平台,包含 Docker 统计信息、历史数据和警报功能
|
||||||
|
|
||||||
|
![Beszel](https://file.lifebus.top/imgs/beszel_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)
|
||||||
|
|
||||||
|
## 特性
|
||||||
|
|
||||||
|
### 轻量级
|
||||||
|
|
||||||
|
比主要解决方案更小,资源占用更少。
|
||||||
|
|
||||||
|
### 简单
|
||||||
|
|
||||||
|
易于设置,无需公网暴露。
|
||||||
|
|
||||||
|
### Docker 统计
|
||||||
|
|
||||||
|
跟踪每个容器的 CPU、内存和网络使用历史。
|
||||||
|
|
||||||
|
### 警报
|
||||||
|
|
||||||
|
可配置 CPU、内存、磁盘、带宽、温度和状态的警报。
|
||||||
|
|
||||||
|
### 多用户
|
||||||
|
|
||||||
|
用户管理自己的系统。管理员可以在用户之间共享系统。
|
||||||
|
|
||||||
|
### OAuth / OIDC
|
||||||
|
|
||||||
|
支持多种 OAuth2 提供程序。可以禁用密码验证。
|
||||||
|
|
||||||
|
### 自动备份
|
||||||
|
|
||||||
|
从磁盘或 S3 兼容的存储保存和恢复数据。
|
||||||
|
|
||||||
|
### REST API
|
||||||
|
|
||||||
|
在您自己的脚本和应用程序中使用或更新您的数据。
|
||||||
|
|
||||||
|
### 架构
|
||||||
|
|
||||||
|
Beszel 由两个主要组件组成:中心 (hub) 和 代理 (agent)。
|
||||||
|
|
||||||
|
+ 中心 (hub): 一个基于 PocketBase 构建的 Web 应用程序,提供用于查看和管理连接系统的仪表板。
|
||||||
|
+ 代理 (agent): 在您要监控的每个系统上运行,创建一个最小的 SSH 服务器以将系统指标传递到中心。
|
||||||
|
|
||||||
|
### 安装说明
|
||||||
|
|
||||||
|
#### 主机网络模式
|
||||||
|
|
||||||
|
代理必须使用主机网络模式才能访问网络接口指标,这将自动暴露端口。如果需要,可以使用环境变量更改端口。
|
||||||
|
|
||||||
|
#### 磁盘监控
|
||||||
|
|
||||||
|
您可以使用 Beszel 监控磁盘、分区或远程挂载。
|
||||||
|
|
||||||
|
> 使用 lsblk 命令查找分区的名称和挂载点。
|
||||||
|
|
||||||
|
在容器的 /extra-filesystems 目录中挂载目标文件系统中的文件夹。
|
||||||
|
|
||||||
|
```yml
|
||||||
|
services:
|
||||||
|
beszel-agent:
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- /<挂载点>/.beszel:/extra-filesystems/<挂载点>:ro
|
||||||
|
```
|
||||||
|
|
||||||
|
+ 挂载点: 挂载点的名称。
|
||||||
|
+ ro: 只读模式
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
|
14
appstore/beszel-agent/data.yml
Normal file
14
appstore/beszel-agent/data.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
additionalProperties:
|
||||||
|
key: beszel-agent
|
||||||
|
name: Beszel Agent
|
||||||
|
tags:
|
||||||
|
- WebSite
|
||||||
|
- Local
|
||||||
|
shortDescZh: 轻量级的服务器监控平台,包含 Docker 统计信息、历史数据和警报功能
|
||||||
|
shortDescEn: A lightweight server monitoring platform with Docker statistics, historical data, and alerting capabilities
|
||||||
|
type: website
|
||||||
|
crossVersionUpdate: true
|
||||||
|
limit: 0
|
||||||
|
website: https://beszel.dev/
|
||||||
|
github: https://github.com/henrygd/beszel/
|
||||||
|
document: https://beszel.dev/
|
BIN
appstore/beszel-agent/logo.png
Normal file
BIN
appstore/beszel-agent/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
12
appstore/beszel/0.9.1/.env
Normal file
12
appstore/beszel/0.9.1/.env
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# 数据持久化路径 [必填]
|
||||||
|
BESZEL_ROOT_PATH=/home/beszel
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=8090
|
||||||
|
|
||||||
|
# 密码验证功能 [必填]
|
||||||
|
DISABLE_PASSWORD_AUTH=false
|
||||||
|
|
||||||
|
# 第三方用户注册功能 [必填]
|
||||||
|
USER_CREATION=false
|
||||||
|
|
41
appstore/beszel/0.9.1/data.yml
Normal file
41
appstore/beszel/0.9.1/data.yml
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "/home/beszel"
|
||||||
|
edit: true
|
||||||
|
envKey: BESZEL_ROOT_PATH
|
||||||
|
labelZh: 数据持久化路径
|
||||||
|
labelEn: Data persistence path
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: 8090
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelZh: WebUI 端口
|
||||||
|
labelEn: WebUI port
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: "false"
|
||||||
|
edit: true
|
||||||
|
envKey: DISABLE_PASSWORD_AUTH
|
||||||
|
labelZh: 密码验证功能
|
||||||
|
labelEn: Disable password authentication
|
||||||
|
required: true
|
||||||
|
type: select
|
||||||
|
values:
|
||||||
|
- label: 禁用
|
||||||
|
value: "true"
|
||||||
|
- label: 启用
|
||||||
|
value: "false"
|
||||||
|
- default: "false"
|
||||||
|
edit: true
|
||||||
|
envKey: USER_CREATION
|
||||||
|
labelZh: 第三方用户注册功能
|
||||||
|
labelEn: Third-party user registration
|
||||||
|
required: true
|
||||||
|
type: select
|
||||||
|
values:
|
||||||
|
- label: 禁用
|
||||||
|
value: "true"
|
||||||
|
- label: 启用
|
||||||
|
value: "false"
|
21
appstore/beszel/0.9.1/docker-compose.yml
Normal file
21
appstore/beszel/0.9.1/docker-compose.yml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
beszel:
|
||||||
|
container_name: beszel
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- TZ=Asia/Shanghai
|
||||||
|
image: henrygd/beszel:0.9.1
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:8090
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${BESZEL_ROOT_PATH}/data:/beszel_data
|
2
appstore/beszel/0.9.1/envs/default.env
Normal file
2
appstore/beszel/0.9.1/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
appstore/beszel/0.9.1/envs/global.env
Normal file
2
appstore/beszel/0.9.1/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
17
appstore/beszel/0.9.1/scripts/init.sh
Normal file
17
appstore/beszel/0.9.1/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/beszel/0.9.1/scripts/uninstall.sh
Normal file
10
appstore/beszel/0.9.1/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/beszel/0.9.1/scripts/upgrade.sh
Normal file
17
appstore/beszel/0.9.1/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
|
52
appstore/beszel/README.md
Normal file
52
appstore/beszel/README.md
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
# Beszel - 服务端 (Hub)
|
||||||
|
|
||||||
|
轻量级的服务器监控平台,包含 Docker 统计信息、历史数据和警报功能
|
||||||
|
|
||||||
|
![Beszel](https://file.lifebus.top/imgs/beszel_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)
|
||||||
|
|
||||||
|
## 特性
|
||||||
|
|
||||||
|
### 轻量级
|
||||||
|
|
||||||
|
比主要解决方案更小,资源占用更少。
|
||||||
|
|
||||||
|
### 简单
|
||||||
|
|
||||||
|
易于设置,无需公网暴露。
|
||||||
|
|
||||||
|
### Docker 统计
|
||||||
|
|
||||||
|
跟踪每个容器的 CPU、内存和网络使用历史。
|
||||||
|
|
||||||
|
### 警报
|
||||||
|
|
||||||
|
可配置 CPU、内存、磁盘、带宽、温度和状态的警报。
|
||||||
|
|
||||||
|
### 多用户
|
||||||
|
|
||||||
|
用户管理自己的系统。管理员可以在用户之间共享系统。
|
||||||
|
|
||||||
|
### OAuth / OIDC
|
||||||
|
|
||||||
|
支持多种 OAuth2 提供程序。可以禁用密码验证。
|
||||||
|
|
||||||
|
### 自动备份
|
||||||
|
|
||||||
|
从磁盘或 S3 兼容的存储保存和恢复数据。
|
||||||
|
|
||||||
|
### REST API
|
||||||
|
|
||||||
|
在您自己的脚本和应用程序中使用或更新您的数据。
|
||||||
|
|
||||||
|
### 架构
|
||||||
|
|
||||||
|
Beszel 由两个主要组件组成:中心 (hub) 和 代理 (agent)。
|
||||||
|
|
||||||
|
+ 中心 (hub): 一个基于 PocketBase 构建的 Web 应用程序,提供用于查看和管理连接系统的仪表板。
|
||||||
|
+ 代理 (agent): 在您要监控的每个系统上运行,创建一个最小的 SSH 服务器以将系统指标传递到中心。
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
|
14
appstore/beszel/data.yml
Normal file
14
appstore/beszel/data.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
additionalProperties:
|
||||||
|
key: beszel
|
||||||
|
name: Beszel Hub
|
||||||
|
tags:
|
||||||
|
- WebSite
|
||||||
|
- Local
|
||||||
|
shortDescZh: 轻量级的服务器监控平台,包含 Docker 统计信息、历史数据和警报功能
|
||||||
|
shortDescEn: A lightweight server monitoring platform with Docker statistics, historical data, and alerting capabilities
|
||||||
|
type: website
|
||||||
|
crossVersionUpdate: true
|
||||||
|
limit: 0
|
||||||
|
website: https://beszel.dev/
|
||||||
|
github: https://github.com/henrygd/beszel/
|
||||||
|
document: https://beszel.dev/
|
BIN
appstore/beszel/logo.png
Normal file
BIN
appstore/beszel/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
@ -5,13 +5,13 @@ services:
|
|||||||
cyberchef:
|
cyberchef:
|
||||||
container_name: cyberchef
|
container_name: cyberchef
|
||||||
env_file:
|
env_file:
|
||||||
- ./envs/global.env
|
- ./envs/global.env
|
||||||
- .env
|
- .env
|
||||||
image: ghcr.io/gchq/cyberchef:10.19.4
|
image: ghcr.io/gchq/cyberchef:10.19.4
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
- 1panel-network
|
- 1panel-network
|
||||||
ports:
|
ports:
|
||||||
- ${PANEL_APP_PORT_HTTP}:80
|
- ${PANEL_APP_PORT_HTTP}:80
|
||||||
restart: always
|
restart: always
|
||||||
|
9
appstore/eigenfocus/0.6.0/.env
Normal file
9
appstore/eigenfocus/0.6.0/.env
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# 数据持久化路径 [必填]
|
||||||
|
EIGENFOCUS_ROOT_PATH=/home/eigenfocus
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=3000
|
||||||
|
|
||||||
|
# 服务地址 [必填]
|
||||||
|
DEFAULT_HOST_URL=http://127.0.0.1:3000
|
||||||
|
|
24
appstore/eigenfocus/0.6.0/data.yml
Normal file
24
appstore/eigenfocus/0.6.0/data.yml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "/home/eigenfocus"
|
||||||
|
edit: true
|
||||||
|
envKey: EIGENFOCUS_ROOT_PATH
|
||||||
|
labelZh: 数据持久化路径
|
||||||
|
labelEn: Data persistence path
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: 3000
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelZh: WebUI 端口
|
||||||
|
labelEn: WebUI port
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: "http://127.0.0.1:3000"
|
||||||
|
edit: true
|
||||||
|
envKey: DEFAULT_HOST_URL
|
||||||
|
labelZh: 服务地址
|
||||||
|
labelEn: Server Url
|
||||||
|
required: true
|
||||||
|
type: text
|
21
appstore/eigenfocus/0.6.0/docker-compose.yml
Normal file
21
appstore/eigenfocus/0.6.0/docker-compose.yml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
eigenfocus:
|
||||||
|
container_name: eigenfocus
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- TZ=Asia/Shanghai
|
||||||
|
image: eigenfocus/eigenfocus:0.6.0
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:3000
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${EIGENFOCUS_ROOT_PATH}/data:/eigenfocus-app/app-data
|
2
appstore/eigenfocus/0.6.0/envs/default.env
Normal file
2
appstore/eigenfocus/0.6.0/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
appstore/eigenfocus/0.6.0/envs/global.env
Normal file
2
appstore/eigenfocus/0.6.0/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
17
appstore/eigenfocus/0.6.0/scripts/init.sh
Normal file
17
appstore/eigenfocus/0.6.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/eigenfocus/0.6.0/scripts/uninstall.sh
Normal file
10
appstore/eigenfocus/0.6.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/eigenfocus/0.6.0/scripts/upgrade.sh
Normal file
17
appstore/eigenfocus/0.6.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
|
41
appstore/eigenfocus/README.md
Normal file
41
appstore/eigenfocus/README.md
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
# Eigenfocus
|
||||||
|
|
||||||
|
看板、时间跟踪与专注工具
|
||||||
|
|
||||||
|
![Eigenfocus](https://file.lifebus.top/imgs/eigenfocus_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)
|
||||||
|
|
||||||
|
## 简介
|
||||||
|
|
||||||
|
### 项目
|
||||||
|
|
||||||
|
创建/编辑/更新/存档您的项目
|
||||||
|
|
||||||
|
### 版块
|
||||||
|
|
||||||
|
每个项目都有一个版块,您可以在其中自定义列以适应您的流程
|
||||||
|
|
||||||
|
### 问题
|
||||||
|
|
||||||
|
创建问题,编写 Markdown 描述并附加文件
|
||||||
|
|
||||||
|
### 工作流程与看板
|
||||||
|
|
||||||
|
在列之间移动问题
|
||||||
|
|
||||||
|
### 时间跟踪
|
||||||
|
|
||||||
|
跟踪在项目和特定问题上的时间
|
||||||
|
|
||||||
|
### 时间报告
|
||||||
|
|
||||||
|
按项目和时间段生成时间报告
|
||||||
|
|
||||||
|
### 主题
|
||||||
|
|
||||||
|
根据您的喜好自定义 UI
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
|
14
appstore/eigenfocus/data.yml
Normal file
14
appstore/eigenfocus/data.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
additionalProperties:
|
||||||
|
key: eigenfocus
|
||||||
|
name: Eigenfocus
|
||||||
|
tags:
|
||||||
|
- WebSite
|
||||||
|
- Local
|
||||||
|
shortDescZh: 看板、时间跟踪与专注工具
|
||||||
|
shortDescEn: Dashboard, Time Tracking and Focus Tool
|
||||||
|
type: website
|
||||||
|
crossVersionUpdate: true
|
||||||
|
limit: 0
|
||||||
|
website: https://eigenfocus.com/
|
||||||
|
github: https://github.com/Eigenfocus/eigenfocus/
|
||||||
|
document: https://eigenfocus.com/
|
BIN
appstore/eigenfocus/logo.png
Normal file
BIN
appstore/eigenfocus/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
9
dockge/beszel-agent/.env
Normal file
9
dockge/beszel-agent/.env
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# 网络模式 [必填]
|
||||||
|
NETWORK_MODE=host
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=45876
|
||||||
|
|
||||||
|
# 公钥 (Hub端生成) [必填]
|
||||||
|
KEY=
|
||||||
|
|
22
dockge/beszel-agent/docker-compose.yml
Normal file
22
dockge/beszel-agent/docker-compose.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
beszel-agent:
|
||||||
|
container_name: beszel-agent
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- TZ=Asia/Shanghai
|
||||||
|
- LOG_LEVEL=info
|
||||||
|
- PORT=${PANEL_APP_PORT_HTTP:-45876}
|
||||||
|
image: henrygd/beszel-agent:0.9.1
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
network_mode: ${NETWORK_MODE:-host}
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
2
dockge/beszel-agent/envs/default.env
Normal file
2
dockge/beszel-agent/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
dockge/beszel-agent/envs/global.env
Normal file
2
dockge/beszel-agent/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
12
dockge/beszel/.env
Normal file
12
dockge/beszel/.env
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# 数据持久化路径 [必填]
|
||||||
|
BESZEL_ROOT_PATH=/home/beszel
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=8090
|
||||||
|
|
||||||
|
# 密码验证功能 [必填]
|
||||||
|
DISABLE_PASSWORD_AUTH=false
|
||||||
|
|
||||||
|
# 第三方用户注册功能 [必填]
|
||||||
|
USER_CREATION=false
|
||||||
|
|
21
dockge/beszel/docker-compose.yml
Normal file
21
dockge/beszel/docker-compose.yml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
beszel:
|
||||||
|
container_name: beszel
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- TZ=Asia/Shanghai
|
||||||
|
image: henrygd/beszel:0.9.1
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:8090
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${BESZEL_ROOT_PATH}/data:/beszel_data
|
2
dockge/beszel/envs/default.env
Normal file
2
dockge/beszel/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
dockge/beszel/envs/global.env
Normal file
2
dockge/beszel/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
@ -5,13 +5,13 @@ services:
|
|||||||
cyberchef:
|
cyberchef:
|
||||||
container_name: cyberchef
|
container_name: cyberchef
|
||||||
env_file:
|
env_file:
|
||||||
- ./envs/global.env
|
- ./envs/global.env
|
||||||
- .env
|
- .env
|
||||||
image: ghcr.io/gchq/cyberchef:10.19.4
|
image: ghcr.io/gchq/cyberchef:10.19.4
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
- 1panel-network
|
- 1panel-network
|
||||||
ports:
|
ports:
|
||||||
- ${PANEL_APP_PORT_HTTP}:80
|
- ${PANEL_APP_PORT_HTTP}:80
|
||||||
restart: always
|
restart: always
|
||||||
|
9
dockge/eigenfocus/.env
Normal file
9
dockge/eigenfocus/.env
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# 数据持久化路径 [必填]
|
||||||
|
EIGENFOCUS_ROOT_PATH=/home/eigenfocus
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=3000
|
||||||
|
|
||||||
|
# 服务地址 [必填]
|
||||||
|
DEFAULT_HOST_URL=http://127.0.0.1:3000
|
||||||
|
|
21
dockge/eigenfocus/docker-compose.yml
Normal file
21
dockge/eigenfocus/docker-compose.yml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
eigenfocus:
|
||||||
|
container_name: eigenfocus
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- TZ=Asia/Shanghai
|
||||||
|
image: eigenfocus/eigenfocus:0.6.0
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:3000
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${EIGENFOCUS_ROOT_PATH}/data:/eigenfocus-app/app-data
|
2
dockge/eigenfocus/envs/default.env
Normal file
2
dockge/eigenfocus/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
dockge/eigenfocus/envs/global.env
Normal file
2
dockge/eigenfocus/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
Loading…
x
Reference in New Issue
Block a user