From a8b25a6a9bab959d2704b499715bf5f22a09ab8b Mon Sep 17 00:00:00 2001 From: komodo Date: Thu, 20 Nov 2025 10:33:59 +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 4fa933c..2a87efd 100644 --- a/compose.yaml +++ b/compose.yaml @@ -257,4 +257,19 @@ services: - '--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 + restart: unless-stopped + + ntopng: + image: ntop/ntopng:latest + container_name: ntopng + restart: unless-stopped + network_mode: host # wichtig, damit es den Traffic sieht + cap_add: + - NET_ADMIN + - NET_RAW + volumes: + - /app-config/ntopng-data:/var/lib/ntopng + command: > + -i eth0 # dein Interface (oder enp1s0, ensXX, bond0 …) + -w 0.0.0.0:3000 # Web-UI + --community # Community Edition (kostenlos) \ No newline at end of file