mirror of
https://github.com/Haxxnet/Compose-Examples.git
synced 2026-05-16 12:57:39 +02:00
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>
27 lines
683 B
YAML
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
|