1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00
dockerfiles/ntopng/docker-compose.yml

21 lines
425 B
YAML
Raw Normal View History

2021-01-13 06:32:30 +00:00
version: "3.8"
2019-05-25 11:47:03 +00:00
services:
ntopng:
image: vimagick/ntopng
2019-05-27 23:32:18 +00: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 11:47:03 +00:00
volumes:
2019-07-08 03:22:44 +00:00
- ./data/ntopng:/var/lib/ntopng
2019-05-26 03:35:13 +00:00
network_mode: host
2019-05-25 11:47:03 +00:00
restart: unless-stopped
redis:
image: redis:alpine
command: --save 900 1
2019-05-26 03:35:13 +00:00
ports:
2019-05-27 03:43:50 +00:00
- "127.0.0.1:6379:6379"
2019-05-25 11:47:03 +00:00
volumes:
- ./data/redis:/data
restart: unless-stopped