1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-02-03 13:21:35 +02:00
dockerfiles/ntopng/docker-compose.yml

21 lines
421 B
YAML
Raw Normal View History

2019-05-25 19:47:03 +08:00
version: '3'
services:
ntopng:
image: vimagick/ntopng
2019-05-28 07:32:18 +08:00
command: --community -d /var/lib/ntopng -i eth0 -r 127.0.0.1:6379@0 -w 127.0.0.1:3000
2019-05-25 19:47:03 +08:00
volumes:
- ./data/ntop:/var/lib/ntopng
2019-05-26 11:35:13 +08:00
network_mode: host
2019-05-25 19:47:03 +08:00
restart: unless-stopped
redis:
image: redis:alpine
command: --save 900 1
2019-05-26 11:35:13 +08:00
ports:
2019-05-27 11:43:50 +08:00
- "127.0.0.1:6379:6379"
2019-05-25 19:47:03 +08:00
volumes:
- ./data/redis:/data
restart: unless-stopped