leyhome/node-exporter.yml hinzugefügt

This commit is contained in:
florian 2026-03-04 18:52:10 +01:00
parent 6f01735c50
commit 3d0a3cb0a5
1 changed files with 17 additions and 0 deletions

17
leyhome/node-exporter.yml Normal file
View File

@ -0,0 +1,17 @@
version: '3.8'
services:
node-exporter:
image: prom/node-exporter:latest
container_name: node-exporter
restart: unless-stopped
volumes:
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /:/rootfs:ro
command:
- '--path.procfs=/host/proc'
- '--path.sysfs=/host/sys'
- '--collector.filesystem.ignored-mount-points=^/(sys|proc|dev|host|etc)($$|/)'
ports:
- "9100:9100"