Advertisement
techblog

ntopng

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