-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
125 lines (117 loc) · 2.09 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
version: '3.3'
services:
config-server:
build: config-server
environment:
- environment=docker
ports:
- "9090:9090"
expose:
- "9090"
discovery-service:
build: discovery-service
environment:
- environment=docker
ports:
- "8761:8761"
expose:
- "8761"
depends_on:
- config-server
entrypoint: ./wait-for-it.sh config-server:9090
links:
- config-server
edge-server:
build: edge-server
environment:
- environment=docker
ports:
- "8765:8765"
expose:
- "8765"
depends_on:
- discovery-service
links:
- config-server
- discovery-service
card:
build: card-service
environment:
- environment=docker
expose:
- "8080"
depends_on:
- discovery-service
links:
- config-server
- discovery-service
statement:
build: statement-service
environment:
- environment=docker
expose:
- "8080"
depends_on:
- discovery-service
links:
- config-server
- discovery-service
card-statement:
build: card-statement-composite
environment:
- environment=docker
expose:
- "8080"
depends_on:
- discovery-service
- card
- statement
links:
- config-server
- discovery-service
- card
- statement
rabbitmq:
build: rabbit-mq-server
ports:
- "5672:5672"
- "15672:15672"
expose:
- "5672"
- "15672"
monitor:
build: monitor-dashboard
environment:
- environment=docker
ports:
- "8179:8179"
expose:
- "8179"
depends_on:
- discovery-service
- rabbitmq
links:
- config-server
- discovery-service
- rabbitmq
turbine:
build: turbine
environment:
- environment=docker
ports:
- "8989:8989"
expose:
- "8989"
depends_on:
- discovery-service
- rabbitmq
links:
- config-server
- discovery-service
- rabbitmq
networks:
front-tier:
driver: bridge
back-tier:
driver: bridge
internal: true