-
Notifications
You must be signed in to change notification settings - Fork 7
/
docker-compose.yml
45 lines (42 loc) · 1.06 KB
/
docker-compose.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
44
45
version: "3.9" # optional since v1.27.0
networks:
load:
# Use a custom driver
driver: bridge
services:
grafana:
image: kirillyu/jmeter-reports:grafana
deploy:
resources:
limits:
cpus: '1.0'
memory: 3512M
ports:
- '3000:3000'
environment:
GF_RENDERING_SERVER_URL: http://renderer:8081/render
GF_RENDERING_CALLBACK_URL: http://grafana:3000/
GF_LOG_FILTERS: debug
renderer:
image: grafana/grafana-image-renderer:latest
deploy:
resources:
limits:
cpus: '1.0'
memory: 3512M
environment:
RENDERING_VERBOSE_LOGGING: 'true'
LOG_LEVEL: debug
ENABLE_METRICS: 'true'
IGNORE_HTTPS_ERRORS: 'true'
ports:
- '8081:8081'
influx:
image: kirillyu/jmeter-reports:influxdb
ports:
- '8086:8086'
volumes:
# Mount for influxdb data directory and configuration
- influxdb2:/root/.influxdb2:rw
volumes:
influxdb2: