22 lines
461 B
YAML
Executable File
22 lines
461 B
YAML
Executable File
services:
|
|
ntopng:
|
|
image: ntop/ntopng:latest
|
|
container_name: ntopng
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 1G
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- NET_RAW
|
|
environment:
|
|
- TZ=Europe/Berlin
|
|
volumes:
|
|
- ./data:/var/lib/ntopng
|
|
command: >
|
|
--community --http-port 9099 --redis 192.168.178.183:9379 --disable-login
|
|
0 --interface ens18
|
|
networks: {}
|