From 6bcde2996f8af8ccc5dfe80958a3a97146a07dfb Mon Sep 17 00:00:00 2001 From: komodo Date: Tue, 18 Nov 2025 20:57:40 +0100 Subject: [PATCH] [Komodo] admin: Write Stack File: update compose.yaml --- compose.yaml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index 399e29d..3e10d6a 100644 --- a/compose.yaml +++ b/compose.yaml @@ -243,4 +243,19 @@ services: depends_on: - loki networks: - - proxy_network \ No newline at end of file + - proxy_network + + node_exporter: + image: prom/node-exporter:latest + container_name: node_exporter + 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.ignored-mount-points=^/(sys|proc|dev|host|etc)($|/)' + restart: unless-stopped \ No newline at end of file