-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
245 lines (232 loc) · 5.79 KB
/
docker-compose.yml
File metadata and controls
245 lines (232 loc) · 5.79 KB
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
networks:
microservices-network:
driver: bridge
services:
mysql:
image: mysql:8
env_file:
- ./repo/env/mysql.env
volumes:
- ./repo/mysql-data:/var/lib/mysql
- ./repo/databases:/docker-entrypoint-initdb.d
restart: unless-stopped
networks:
- microservices-network
ports:
- "3306:3306"
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "127.0.0.1", "-u", "root", "-p${MYSQL_ROOT_PASSWORD}"]
start_period: 20s
interval: 15s
timeout: 5s
retries: 10
mongodb:
image: mongo:8
restart: unless-stopped
env_file: ./repo/env/mongodb.env
volumes:
- ./repo/mongo-data:/data/db
- ./repo/databases:/docker-entrypoint-initdb.d
networks:
- microservices-network
ports:
- "27017:27017"
healthcheck:
test: ["CMD", "mongosh", "--quiet", "127.0.0.1/test", "--eval", "'quit(db.runCommand({ ping: 1 }).ok ? 0 : 2)'"]
start_period: 20s
interval: 15s
timeout: 5s
retries: 10
rabbitmq:
image: rabbitmq:4-management-alpine
restart: unless-stopped
env_file: ./repo/env/rabbitmq.env
volumes:
- ./repo/rabbitmq-data:/var/lib/rabbitmq
networks:
- microservices-network
ports:
- "15672:15672"
healthcheck:
test: ["CMD", "rabbitmq-diagnostics", "ping"]
start_period: 20s
interval: 15s
timeout: 5s
retries: 10
redis:
image: redis:7.2
restart: unless-stopped
networks:
- microservices-network
ports:
- "6379:6379"
healthcheck:
test: ["CMD", "redis-cli", "ping"]
start_period: 10s
interval: 15s
timeout: 5s
retries: 5
eureka-service:
build:
context: ./eureka
dockerfile: Dockerfile
image: eureka-service
environment:
EUREKA_HOST: eureka-service
volumes:
- ./repo/logs/eureka:/application/eureka-log
networks:
- microservices-network
ports:
- "9091:9091"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9091/actuator/health"]
start_period: 30s
interval: 10s
timeout: 10s
retries: 3
gateway:
build:
context: ./gateway
dockerfile: Dockerfile
image: gateway-service
environment:
EUREKA_HOST: eureka-service
GATEWAY_NAME: gateway
volumes:
- ./repo/logs/gateway:/application/gateway-log
networks:
- microservices-network
ports:
- "9092:9092"
depends_on:
eureka-service:
condition: service_healthy
accounts-service:
build:
context: ./accounts
dockerfile: Dockerfile
image: accounts-service
env_file:
- ./repo/env/persistence-mysql.env
- ./repo/env/secret.env
- ./repo/env/user-admin.env
- ./repo/env/springdoc.env
environment:
DB_HOST: mysql
EUREKA_HOST: eureka-service
volumes:
- ./repo/logs/accounts:/application/accounts-log
networks:
- microservices-network
depends_on:
mysql:
condition: service_healthy
eureka-service:
condition: service_healthy
products-service:
build:
context: ./products
dockerfile: Dockerfile
image: products-service
env_file:
- ./repo/env/persistence-mysql.env
- ./repo/env/secret.env
- ./repo/env/rabbitmq.env
- ./repo/env/app-rabbitmq.env
- ./repo/env/springdoc.env
environment:
DB_HOST: mysql
REDIS_HOST: redis
RABBIT_HOST: rabbitmq
EUREKA_HOST: eureka-service
GATEWAY_NAME: gateway
volumes:
- ./repo/logs/products:/application/products-log
networks:
- microservices-network
depends_on:
mysql:
condition: service_healthy
redis:
condition: service_healthy
rabbitmq:
condition: service_healthy
eureka-service:
condition: service_healthy
cart-service:
build:
context: ./cart
dockerfile: Dockerfile
image: cart-service
env_file:
- ./repo/env/persistence-mongo.env
- ./repo/env/secret.env
- ./repo/env/rabbitmq.env
- ./repo/env/springdoc.env
environment:
DB_HOST: mongodb
RABBIT_HOST: rabbitmq
EUREKA_HOST: eureka-service
volumes:
- ./repo/logs/cart:/application/cart-log
networks:
- microservices-network
depends_on:
mongodb:
condition: service_healthy
eureka-service:
condition: service_healthy
orders-service:
build:
context: ./orders
dockerfile: Dockerfile
image: orders-service
env_file:
- ./repo/env/persistence-mongo.env
- ./repo/env/secret.env
- ./repo/env/rabbitmq.env
- ./repo/env/app-rabbitmq.env
- ./repo/env/springdoc.env
environment:
DB_HOST: mongodb
RABBIT_HOST: rabbitmq
EUREKA_HOST: eureka-service
GATEWAY_NAME: gateway
volumes:
- ./repo/logs/orders:/application/orders-log
networks:
- microservices-network
depends_on:
mongodb:
condition: service_healthy
rabbitmq:
condition: service_healthy
eureka-service:
condition: service_healthy
payments-service:
build:
context: ./payments
dockerfile: Dockerfile
image: payments-service
env_file:
- ./repo/env/persistence-mysql.env
- ./repo/env/secret.env
- ./repo/env/rabbitmq.env
- ./repo/env/app-rabbitmq.env
- ./repo/env/springdoc.env
environment:
DB_HOST: mysql
RABBIT_HOST: rabbitmq
EUREKA_HOST: eureka-service
volumes:
- ./repo/logs/payments:/application/payments-log
networks:
- microservices-network
depends_on:
mysql:
condition: service_healthy
rabbitmq:
condition: service_healthy
eureka-service:
condition: service_healthy