-
Notifications
You must be signed in to change notification settings - Fork 92
/
docker-compose.yml
53 lines (44 loc) · 959 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
version: '3.3'
services:
requestload:
image: mrbwilms/requestload
chaostoolkit:
image: mrbwilms/chaostoolkit:chaos-demo
tty: true
chaoshub:
image: chaostoolkit/chaoshub:0.1.2
ports:
- "8888:8080"
tty: true
gateway:
image: mrbwilms/gateway:chaos-demo
ports:
- "8080:8080"
fashion:
image: mrbwilms/bestseller-fashion:chaos-demo
ports:
- 8090-8092:8082
toys:
image: mrbwilms/bestseller-toys:chaos-demo
ports:
- "8081:8081"
hot-deals:
image: mrbwilms/hot-deals:chaos-demo
ports:
- "8083:8083"
eureka-server:
image: mrbwilms/eureka-server:chaos-demo
ports:
- "8761:8761"
jaeger-server:
image: jaegertracing/all-in-one
environment:
- COLLECTOR_ZIPKIN_HTTP_PORT=9411
ports:
- "5775:5775"
- "6831:6831/udp"
- "6832:6832"
- "5778:5778"
- "16686:16686"
- "14268:14268"
- "9411:9411"