Files
Compose-Examples/examples/beszel/docker-compose.yml
Tobias Krug 4ebd668982 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>
2026-05-13 21:43:34 +02:00

27 lines
683 B
YAML

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