feat: add Beszel server monitoring compose example

Beszel is a lightweight server monitoring platform with Docker stats,
historical data, and alerts. It has 21k+ GitHub stars and is widely
used in the self-hosting community.

Co-Authored-By: Tobias Krug <tobi@snxrcs.me>
This commit is contained in:
Tobias Krug
2026-05-13 21:43:34 +02:00
parent 15b9c298dc
commit 4ebd668982
3 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
services:
beszel:
image: henrygd/beszel:latest
container_name: beszel
hostname: beszel
restart: unless-stopped
ports:
- 8090:8090/tcp
expose:
- 8090
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/beszel:/beszel_data
#networks:
# - proxy
#labels:
# - traefik.enable=true
# - traefik.docker.network=proxy
# - traefik.http.routers.beszel.rule=Host(`beszel.example.com`)
# - traefik.http.services.beszel.loadbalancer.server.port=8090
# # Optional part for traefik middlewares
# - traefik.http.routers.beszel.middlewares=local-ipwhitelist@file
#networks:
# proxy:
# external: true