-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
174 lines (163 loc) · 3.63 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
services:
ms-configs:
image: sarapura12/ms-configserver
container_name: ms-configs
mem_limit: 800m
expose:
- "8085"
ports:
- "8085:8085"
networks:
- team-network
gatewayServer:
image: sarapura12/gatewayserver
container_name: gatewayserver
mem_limit: 800m
deploy:
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 120s
expose:
- "8066"
environment:
SPRING_PROFILE_ACTIVE: dev
SPRING_CONFIG_IMPORT: optional:configserver:http://ms-configs:8085/
ports:
- "8066:8066"
networks:
- team-network
depends_on:
- eurekaserver
- ms-configs
- ms-sales
- ms-clients
- ms-products
- msDB
eurekaserver:
image: sarapura12/eurekaserver:latest
mem_limit: 800m
ports:
- "8065:8065"
networks:
- team-network
depends_on:
- ms-configs
deploy:
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 120s
environment:
SPRING_PROFILE_ACTIVE: dev
SPRING_CONFIG_IMPORT: optional:configserver:http://ms-configs:8085/
ms-identity:
image: sarapura12/ms-identity:latest
container_name: ms-identity
mem_limit: 800m
expose:
- "8083"
ports:
- "8083:8083"
deploy:
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 120s
environment:
SPRING_PROFILE_ACTIVE: dev
SPRING_CONFIG_IMPORT: optional:configserver:http://ms-configs:8085/
networks:
- team-network
depends_on:
- ms-configs
- msDB
ms-sales:
image: sarapura12/ms-sales:latest
container_name: ms-sales
mem_limit: 800m
expose:
- "8080"
ports:
- "8080:8080"
deploy:
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 120s
environment:
SPRING_PROFILE_ACTIVE: dev
SPRING_CONFIG_IMPORT: optional:configserver:http://ms-configs:8085/
networks:
- team-network
depends_on:
- ms-configs
- msDB
ms-products:
image: sarapura12/ms-products:latest
container_name: ms-products
mem_limit: 800m
expose:
- "8081"
ports:
- "8081:8081"
deploy:
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 120s
environment:
SPRING_PROFILE_ACTIVE: dev
SPRING_CONFIG_IMPORT: optional:configserver:http://ms-configs:8085/
networks:
- team-network
depends_on:
- ms-configs
- msDB
ms-clients:
image: sarapura12/ms-clients:latest
container_name: ms-clients
mem_limit: 800m
expose:
- "8082"
ports:
- "8082:8082"
deploy:
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 120s
environment:
SPRING_PROFILE_ACTIVE: dev
SPRING_CONFIG_IMPORT: optional:configserver:http://ms-configs:8085/
networks:
- team-network
depends_on:
- ms-configs
- msDB
msDB:
image: mysql:latest
expose:
- "3306"
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: admin
MYSQL_DATABASE: msDB
healthcheck:
test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost" ]
interval: 2s
retries: 10
timeout: 10s
restart: always
networks:
- team-network
networks:
team-network:
driver: bridge