Beszel Hub logo

Beszel Hub

Lightweight server monitoring platform

Alternative to: grafana, netdata, prometheus, zabbix


Beszel is a lightweight server monitoring platform that includes Docker statistics, historical data, and alert functions.

Beszel Hub Docker Compose example

Self-host Beszel Hub on your own server, homelab, or VPS starting from this Docker Compose example. It runs Beszel Hub in Docker containers using the official henrygd/beszel:latest image, with persistent volumes and automatic restarts preconfigured. Review the environment variables and adjust them to your setup, save the file as compose.yml (or docker-compose.yml), and start the stack with docker compose up -d.

services:
  beszel:
    image: henrygd/beszel:latest
    environment:
      USER_EMAIL: ""
      USER_PASSWORD: ""
      APP_URL: ""
    volumes:
      - beszel_data:/beszel_data
    restart: unless-stopped

volumes:
  beszel_data:

Prefer a managed setup? WinterFlow installs, configures, and updates Beszel Hub for you using this same Docker Compose configuration.