37 lines
783 B
YAML
37 lines
783 B
YAML
version: '3.1'
|
|
|
|
volumes:
|
|
prometheus_data: {}
|
|
grafana_data: {}
|
|
|
|
networks:
|
|
default:
|
|
external:
|
|
name: wnodetestcluster_cluster
|
|
|
|
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
|
|
restart: always
|
|
|
|
grafana:
|
|
image: grafana/grafana
|
|
depends_on:
|
|
- prometheus
|
|
ports:
|
|
- 3000:3000
|
|
volumes:
|
|
- grafana_data:/var/lib/grafana
|
|
env_file:
|
|
- config.grafana.env
|