-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (42 loc) · 1.07 KB
/
Copy pathdocker-compose.yml
File metadata and controls
45 lines (42 loc) · 1.07 KB
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
44
45
services:
avalanche:
image: quay.io/prometheuscommunity/avalanche
command:
- --gauge-metric-count=5
- --label-count=3
- --series-count=10
- --value-interval=15
- --series-interval=120
- --metric-interval=600
- --port=9001
ports:
- "9001:9001"
prometheus:
image: prom/prometheus:v3.13.1
volumes:
- ./dev/prometheus.yml:/etc/prometheus/prometheus.yml:ro
ports:
- "9090:9090"
depends_on:
- avalanche
victoriametrics:
image: victoriametrics/victoria-metrics
command:
- -promscrape.config=/etc/victoriametrics/scrape.yml
volumes:
- ./dev/victoriametrics-scrape.yml:/etc/victoriametrics/scrape.yml:ro
ports:
- "8428:8428"
depends_on:
- avalanche
grafana:
image: grafana/grafana
environment:
- GF_AUTH_ANONYMOUS_ENABLED=true
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
volumes:
- ./dev/grafana-datasource.yml:/etc/grafana/provisioning/datasources/datasource.yml:ro
ports:
- "3000:3000"
depends_on:
- prometheus