[mod] ntopng

This commit is contained in:
Andy Bunce 2022-12-18 22:59:31 +00:00
parent c34d78593c
commit a73742c52c

View file

@ -1,21 +1,30 @@
version: '3'
version: '2.0'
services:
ntopng:
image: edgd1er/ntopng:latest
hostname: ntopng
restart: always
environment:
TZ: "Europe/Paris"
NTOP_UID: 1000
NTOP_GID: 1000
network_mode: host
cap_add:
- NET_ADMIN
volumes:
- ./data/ntopng:/var/lib/ntopng
command: --community -d /var/lib/ntopng -w 0.0.0.0:27833 -r localhost:6379 -Z "/monitor"
depends_on:
- redis
redis:
image: redis:alpine
image: redis:latest
command: --save 900 1
volumes:
- ./data/redis:/data
restart: on-failure:5
network_mode: "host"
ntopng:
build:
context: ntop
dockerfile: Dockerfile
command: ntopng -r localhost:6379 -d /ntopngcustom
volumes:
- ./data/ntopng:/var/lib/ntopng
restart: on-failure:5
network_mode: "host"
depends_on:
- redis
restart: always
ports:
- "6379:6379"
volumes:
data_ntopng:
data_redis: