Updated Beszel service template with new version changes

This commit is contained in:
ShadowArcanist 2025-09-23 18:20:01 +05:30 committed by GitHub
parent 9d1369e7f8
commit 7b0d22ed4d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,19 +6,24 @@
# port: 8090 # port: 8090
# When adding a System in the UI, the Host/IP must be beszel-agent (or the container name, ex: beszel-agent-pswog4s8wks4o8osw44cw0k8) # When adding a System in the UI, the Host/IP must be beszel-agent (or the container name, ex: beszel-agent-pswog4s8wks4o8osw44cw0k8)
# Add the public Key in "Key" env variable below # Add the public Key in "Key" env variable and token in the "Token" variable below (These are obtained from Beszel UI)
services: services:
beszel: beszel:
image: henrygd/beszel:latest image: 'henrygd/beszel:0.12.10'
environment: environment:
- SERVICE_URL_BESZEL_8090 - SERVICE_URL_BESZEL_8090
volumes: volumes:
- beszel_data:/beszel_data - 'beszel_data:/beszel_data'
- 'beszel_socket:/beszel_socket'
beszel-agent: beszel-agent:
image: henrygd/beszel-agent image: 'henrygd/beszel-agent:0.12.10'
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro - beszel_agent_data:/var/lib/beszel-agent
- beszel_socket:/beszel_socket
- '/var/run/docker.sock:/var/run/docker.sock:ro'
environment: environment:
- PORT=45876 - LISTEN=/beszel_socket/beszel.sock
- KEY=${KEY} - HUB_URL=http://beszel:8090
- 'TOKEN=${TOKEN}'
- 'KEY=${KEY}'