Container image for a Munin master server.
- Provides a Munin master monitoring server
- Displays monitoring graphs through a web interface
- Supports monitoring multiple Munin nodes
- Uses
rrdcachedfor better performance - Generates graphs on demand with FastCGI
- Supports custom Munin configuration
- Lightweight Alpine-based image
services:
munin:
image: dockurr/munin
container_name: munin
environment:
TZ: "UTC"
NODES: "node1:10.0.0.101 node2:10.0.0.102"
ports:
- 80:80
volumes:
- ./lib:/var/lib/munin
- ./log:/var/log/munin
- ./conf:/etc/munin/munin-conf.d
- ./plugin:/etc/munin/plugin-conf.d
restart: always
stop_grace_period: 1mdocker run -it --rm --name munin -p 80:80 -e "NODES=node1:10.0.0.101 node2:10.0.0.102" --stop-timeout 60 docker.io/dockurr/muninSpecial thanks to @aheimsbakk, for creating the original project.
