-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
57 lines (55 loc) · 992 Bytes
/
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
52
53
54
55
56
version: '3.4'
networks:
cluster:
driver: bridge
test:
driver: bridge
services:
broker:
image: maestroperf/maestro-broker:edge
hostname: broker
networks:
- cluster
ports:
- "18161:8161"
- "1883:1883"
worker:
image: maestroperf/maestro-worker:edge
networks:
- cluster
- test
depends_on:
- broker
- sut
inspector:
image: maestroperf/maestro-inspector:edge
ports:
- "38000:8000"
networks:
- cluster
- test
depends_on:
- sut
- broker
agent:
image: maestroperf/maestro-agent:edge
ports:
- "48000:8000"
networks:
- cluster
- test
depends_on:
- broker
reports:
image: maestroperf/maestro-reports:edge
hostname: reports
networks:
- cluster
ports:
- "6500:6500"
volumes:
- reports:/maestro
depends_on:
- broker
volumes:
reports: