From ff59e31354214a1131a88e30b5694baca9fc3b0b Mon Sep 17 00:00:00 2001 From: Jozsef Gtta Date: Thu, 7 May 2026 04:27:04 +0000 Subject: [PATCH] chore: update jellyfin/node-exporter compose (Portainer migration) --- jellyfin/node-exporter/docker-compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 jellyfin/node-exporter/docker-compose.yml diff --git a/jellyfin/node-exporter/docker-compose.yml b/jellyfin/node-exporter/docker-compose.yml new file mode 100644 index 0000000..3f77805 --- /dev/null +++ b/jellyfin/node-exporter/docker-compose.yml @@ -0,0 +1,15 @@ +services: + node-exporter: + image: prom/node-exporter:latest + container_name: node-exporter + restart: unless-stopped + network_mode: host + pid: host + volumes: + - /proc:/host/proc:ro + - /sys:/host/sys:ro + - /:/rootfs:ro + command: + - '--path.procfs=/host/proc' + - '--path.sysfs=/host/sys' + - '--collector.filesystem.mount-points-exclude=^/(sys|proc|dev|host|etc)($$|/)'