forked from NetApp/harvest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprom-stack.yml
43 lines (39 loc) · 1.1 KB
/
prom-stack.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
version: '3.7'
volumes:
prometheus_data: {}
grafana_data: {}
harvest: {}
networks:
frontend:
backend:
services:
prometheus:
container_name: prometheus
image: prom/prometheus:latest
volumes:
- ./docker/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
networks:
- backend
restart: unless-stopped
grafana:
container_name: grafana
image: grafana/grafana:latest
depends_on:
- prometheus
ports:
- 3000:3000
volumes:
- grafana_data:/var/lib/grafana
- ./grafana:/etc/grafana/provisioning # import Harvest dashboards
networks:
- backend
- frontend
restart: unless-stopped