-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
44 lines (40 loc) · 903 Bytes
/
docker-compose.yaml
File metadata and controls
44 lines (40 loc) · 903 Bytes
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
version: '3.8'
services:
influxdb:
image: influxdb:1.8.10
networks:
- k6
ports:
- "8086:8086"
environment:
- INFLUXDB_DB=k6
- INFLUXDB_HTTP_AUTH_ENABLED=false
volumes:
- influxdb_data:/var/lib/influxdb
grafana:
image: grafana/grafana:latest
networks:
- k6
ports:
- "3000:3000"
environment:
- GF_AUTH_ANONYMOUS_ENABLED=true
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
- GF_AUTH_DISABLE_LOGIN_FORM=true
- GF_RENDERING_SERVER_URL = http://renderer:8081/render
- GF_RENDERING_CALLBACK_URL = http://grafana:3000/
- GF_LOG_FILTERS = rendering:debug
volumes:
- grafana_data:/var/lib/grafana
depends_on:
- influxdb
renderer:
image: grafana/grafana-image-renderer:latest
ports:
- 8081
networks:
k6:
driver: bridge
volumes:
influxdb_data:
grafana_data: