1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/ntopng/docker-compose-collector.yml

20 lines
320 B
YAML
Raw Normal View History

2019-05-26 03:35:13 +00:00
version: '3'
services:
ntopng:
image: vimagick/ntopng
ports:
- "3000:3000"
- "5556:5556"
volumes:
2019-07-08 03:22:44 +00:00
- ./data/ntopng:/var/lib/ntopng
2019-05-26 03:35:13 +00:00
restart: unless-stopped
redis:
image: redis:alpine
command: --save 900 1
volumes:
- ./data/redis:/data
restart: unless-stopped