mirror of
https://github.com/Haxxnet/Compose-Examples.git
synced 2026-05-16 12:57:39 +02:00
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:
26
examples/beszel/docker-compose.yml
Normal file
26
examples/beszel/docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user