-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
executable file
·52 lines (45 loc) · 1.05 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
46
47
48
49
50
51
version: '3'
services:
gatling:
image: poswark/gatling:1
tty: true
container_name: gatling
volumes:
- ./gatling/user-files/simulations:/opt/gatling/user-files/simulations
- ./results:/opt/gatling/results/
networks:
- gatling_network
grafana:
image: poswark/grafana-gatling:1
container_name: grafana
ports:
- 3000:3000
restart: unless-stopped
volumes:
- grafana-data:/var/lib/grafana
environment:
- TZ=America/Bogota
- GF_USERS_DEFAULT_THEME=light
networks:
- gatling_network
influxdb:
image: influxdb:1.8
container_name: influxdb
ports:
- '8086:8086'
- '2003:2003'
volumes:
- influxdb-storage:/var/lib/influxdb
- ./influxdb.conf:/etc/influxdb/influxdb.conf
environment:
- INFLUXDB_GRAPHITE_ENABLED=true
- INFLUXDB_USERNAME=admin
- INFLUXDB_PASSWORD=admin
- INFLUXDB_DB=gatlingdb
networks:
- gatling_network
networks:
gatling_network:
volumes:
influxdb-storage:
grafana-data: