Advertisement
techblog

ntop_ng

Jul 19th, 2020
1,226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.34 KB | None | 0 0
  1.  ntopng:
  2.     container_name: "ntopng"
  3.     image: vimagick/ntopng
  4.     command: --community -d /var/lib/ntopng -i ens160 -r 127.0.0.1:6379@0 -w 0.0.0.0:3003
  5.     volumes:
  6.      - ./ntopng:/var/lib/ntopng
  7.     network_mode: host
  8.     restart: unless-stopped
  9.     labels:
  10.      - "com.ouroboros.enable=false"
  11.  
  12.   redis:
  13.     container_name: "ntopng-redis"
  14.     image: redis:alpine
  15.     command: --save 900 1
  16.     ports:
  17.      - "6379:6379"
  18.     volumes:
  19.      - ./ntopng/data/redis:/data
  20.     restart: unless-stopped
  21.     labels:
  22.      - "com.ouroboros.enable=false"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement