mirror of
https://github.com/rodneyosodo/homelab.git
synced 2026-08-07 07:15:03 +00:00
473557be60
Signed-off-by: Rodney Osodo <socials@rodneyosodo.com>
21 lines
578 B
YAML
21 lines
578 B
YAML
services:
|
|
node-exporter:
|
|
container_name: node-exporter
|
|
image: docker.io/prom/node-exporter:v1.11.1
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
pid: host
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
volumes:
|
|
- /run/udev/data:/run/udev/data:ro
|
|
- /proc:/host/proc:ro
|
|
- /sys:/host/sys:ro
|
|
- /:/rootfs:ro
|
|
command:
|
|
- --web.listen-address=:5040
|
|
- --path.procfs=/host/proc
|
|
- --path.sysfs=/host/sys
|
|
- --path.rootfs=/rootfs
|
|
- --collector.filesystem.mount-points-exclude=^/(sys|proc|dev|host|etc)($$|/)
|