mirror of
https://github.com/arch3rPro/1Panel-Appstore.git
synced 2026-04-20 03:47:43 +08:00
feat: update beszel-agent 0.15.2
This commit is contained in:
4
apps/beszel-agent/0.15.2/.env.sample
Normal file
4
apps/beszel-agent/0.15.2/.env.sample
Normal file
@@ -0,0 +1,4 @@
|
||||
CONTAINER_NAME="beszel-agent"
|
||||
DOCKER_SOCK_PATH="/var/run/docker.sock"
|
||||
KEY="ssh-xxx"
|
||||
PANEL_APP_PORT_HTTP=40332
|
||||
24
apps/beszel-agent/0.15.2/data.yml
Normal file
24
apps/beszel-agent/0.15.2/data.yml
Normal file
@@ -0,0 +1,24 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "45876"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "/var/run/docker.sock"
|
||||
edit: true
|
||||
envKey: DOCKER_SOCK_PATH
|
||||
labelEn: Docker Socket Path
|
||||
labelZh: Docker 套接字路径
|
||||
required: true
|
||||
type: text
|
||||
- default: "ssh-ed25519 xxxxxx"
|
||||
edit: true
|
||||
envKey: KEY
|
||||
labelEn: Key
|
||||
labelZh: 密钥
|
||||
required: true
|
||||
type: password
|
||||
13
apps/beszel-agent/0.15.2/docker-compose.yml
Normal file
13
apps/beszel-agent/0.15.2/docker-compose.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
services:
|
||||
beszel-agent:
|
||||
image: henrygd/beszel-agent:0.15.2
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
network_mode: host
|
||||
volumes:
|
||||
- ${DOCKER_SOCK_PATH}:/var/run/docker.sock
|
||||
environment:
|
||||
- PORT=${PANEL_APP_PORT_HTTP}
|
||||
- KEY=${KEY}
|
||||
labels:
|
||||
createdBy: Apps
|
||||
2
apps/beszel-agent/0.15.2/envs/default.env
Normal file
2
apps/beszel-agent/0.15.2/envs/default.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
2
apps/beszel-agent/0.15.2/envs/global.env
Normal file
2
apps/beszel-agent/0.15.2/envs/global.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
17
apps/beszel-agent/0.15.2/scripts/init.sh
Normal file
17
apps/beszel-agent/0.15.2/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
apps/beszel-agent/0.15.2/scripts/uninstall.sh
Normal file
10
apps/beszel-agent/0.15.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
|
||||
17
apps/beszel-agent/0.15.2/scripts/upgrade.sh
Normal file
17
apps/beszel-agent/0.15.2/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
|
||||
Reference in New Issue
Block a user