-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (47 loc) · 876 Bytes
/
docker-compose.yml
File metadata and controls
53 lines (47 loc) · 876 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
45
46
47
48
49
50
51
52
53
zipkin:
image: openzipkin/zipkin
ports:
- "9411:9411"
consul:
image: consul
ports:
- "8400:8400"
- "8500:8500"
- "8600:8600"
service-b:
image: spring-cloud-consul-example/service-b
links:
- "consul"
- "hystrix-dashboard"
- "zipkin"
service-a:
image: spring-cloud-consul-example/service-a
links:
- "consul"
- "service-b"
- "hystrix-dashboard"
- "zipkin"
admin-dashboard:
image: spring-cloud-consul-example/admin-dashboard
ports:
- "8040:8040"
links:
- "service-a"
- "service-b"
- "zuul"
- "hystrix-dashboard"
- "consul"
zuul:
image: spring-cloud-consul-example/zuul
ports:
- "8060:8060"
links:
- "consul"
- "service-a"
- "zipkin"
hystrix-dashboard:
image: spring-cloud-consul-example/hystrix-dashboard
ports:
- "8050:8050"
links:
- "consul"