Created
August 22, 2020 18:17
-
-
Save darox/4d6f9b8e55beb9ae9763efa543c85f41 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Written by Dario Mader | |
#Github https://github.com/darox | |
#Date: 22.08.2020 | |
version: '3.8' | |
services: | |
grafana: | |
image: "grafana/grafana" | |
volumes: | |
- type: bind | |
source: ./grafana/var | |
target: /var/lib/grafana | |
- type: bind | |
source: ./grafana/etc | |
target: /etc/grafana | |
user: "root" | |
ports: | |
- "127.0.0.1:3333:3000" | |
influxdb: | |
image: "influxdb" | |
ports: | |
- "127.0.0.1:8086:8086" | |
volumes: | |
- type: bind | |
source: ./influxdb/var | |
target: /var/lib/influxdb | |
- type: bind | |
source: ./influxdb/etc | |
target: /etc/influxdb | |
ntop: | |
network_mode: host | |
build: ./ntopng | |
volumes: | |
- type: bind | |
source: ./ntopng | |
target: /var/lib/ntopng |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment