Skip to content

Instantly share code, notes, and snippets.

@darox
Created August 22, 2020 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darox/4d6f9b8e55beb9ae9763efa543c85f41 to your computer and use it in GitHub Desktop.
Save darox/4d6f9b8e55beb9ae9763efa543c85f41 to your computer and use it in GitHub Desktop.
#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