1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-24 05:17:06 +02:00
dockerfiles/ntopng/docker-compose.yml

21 lines
427 B
YAML
Raw Normal View History

2021-01-13 14:32:30 +08:00
version: "3.8"
2019-05-25 19:47:03 +08:00
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:
2019-07-08 11:22:44 +08:00
- ./data/ntopng:/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:
2023-05-04 14:25:02 +08:00
image: redis:7-alpine
2019-05-25 19:47:03 +08:00
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