mirror of
https://github.com/ItsDrike/network-monitor.git
synced 2024-11-09 19:49:42 +00:00
70 lines
1.4 KiB
YAML
70 lines
1.4 KiB
YAML
version: "3.1"
|
|
|
|
volumes:
|
|
prometheus_data: {}
|
|
grafana_data: {}
|
|
|
|
networks:
|
|
front-tier:
|
|
back-tier:
|
|
|
|
services:
|
|
prometheus:
|
|
image: prom/prometheus:v2.0.0
|
|
volumes:
|
|
- ./prometheus/:/etc/prometheus/
|
|
- prometheus_data:/prometheus
|
|
command:
|
|
- '--config.file=/etc/prometheus/prometheus.yml'
|
|
- '--storage.tsdb.path=/prometheus'
|
|
- '--web.console.libraries=/usr/share/prometheus/console_libraries'
|
|
- '--web.console.templates=/usr/share/prometheus/consoles'
|
|
ports:
|
|
- 9090:9090
|
|
links:
|
|
- ping:ping
|
|
- speedtest:speedtest
|
|
networks:
|
|
- back-tier
|
|
|
|
grafana:
|
|
image: grafana/grafana
|
|
volumes:
|
|
- grafana_data:/var/lib/grafana
|
|
- ./grafana/provisioning/:/etc/grafana/provisioning/
|
|
depends_on:
|
|
- prometheus
|
|
ports:
|
|
- 3000:3000
|
|
env_file:
|
|
- ./grafana/config.monitoring
|
|
networks:
|
|
- back-tier
|
|
- front-tier
|
|
|
|
ping:
|
|
tty: true
|
|
stdin_open: true
|
|
expose:
|
|
- 9115
|
|
ports:
|
|
- 9115:9115
|
|
image: prom/blackbox-exporter
|
|
volumes:
|
|
- ./blackbox/config:/config
|
|
command:
|
|
- '--config.file=/config/blackbox.yml'
|
|
networks:
|
|
- back-tier
|
|
|
|
speedtest:
|
|
tty: true
|
|
stdin_open: true
|
|
expose:
|
|
- 9696
|
|
ports:
|
|
- 9696:9696
|
|
image: stefanwalther/speedtest-exporter
|
|
networks:
|
|
- back-tier
|