1
0

chore(deps): update beszel to v0.18.4 (#4145)

This commit is contained in:
renovate[bot]
2026-02-21 02:12:14 +00:00
committed by GitHub
parent 7dc273a6b2
commit 67bcfef4ea
6 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
CONTAINER_NAME="beszel-agent"
DOCKER_SOCK_PATH="/var/run/docker.sock"
KEY="ssh-xxx"
PANEL_APP_PORT_HTTP=40332

View File

@@ -0,0 +1,33 @@
additionalProperties:
formFields:
- default: "40332"
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
label:
en: Port
zh: 端口
required: true
rule: paramPort
type: number
- default: "/var/run/docker.sock"
edit: true
envKey: DOCKER_SOCK_PATH
labelEn: Docker Socket Path
labelZh: Docker 套接字路径
label:
en: Docker Socket Path
zh: Docker 套接字路径
required: true
type: text
- default: "ssh-xxx"
edit: true
envKey: KEY
labelEn: Key
labelZh: 密钥
label:
en: Key
zh: 密钥
required: true
type: password

View File

@@ -0,0 +1,13 @@
services:
beszel-agent:
image: "henrygd/beszel-agent:0.18.4"
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"