-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
264 lines (243 loc) · 7.29 KB
/
compose.yml
File metadata and controls
264 lines (243 loc) · 7.29 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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
services:
config-server:
build:
context: ./config-server
dockerfile: ./Dockerfile
container_name: config-server
depends_on:
registry-server:
condition: service_healthy
environment:
EUREKA_SERVER: http://registry-server:8761/eureka/
SERVER_PORT: 8888
healthcheck:
test: wget --no-verbose --tries=1 --spider config-server:8888/actuator/health || exit 1
interval: 12s
timeout: 6s
retries: 5
image: config-server:latest
networks:
- Spring6Microservices
ports:
- "8888:8888"
gateway-server:
build:
context: ./gateway-server
dockerfile: ./Dockerfile
container_name: gateway-server
environment:
CONFIG_SERVER: http://config-server:8888
EUREKA_SERVER: http://registry-server:8761/eureka/
SERVER_PORT: 5555
depends_on:
config-server:
condition: service_healthy
registry-server:
condition: service_healthy
healthcheck:
test: wget --no-verbose --tries=1 --spider gateway-server:5555/actuator/health || exit 1
interval: 12s
timeout: 6s
retries: 5
image: gateway-server:latest
networks:
- Spring6Microservices
ports:
- "5555:5555"
invoice-service:
build:
context: ./invoice-service
dockerfile: ./Dockerfile
container_name: invoice-service
depends_on:
config-server:
condition: service_healthy
gateway-server:
condition: service_healthy
kafka:
condition: service_started
registry-server:
condition: service_healthy
security-custom-service:
condition: service_healthy
environment:
CONFIG_SERVER: http://config-server:8888
DATABASE_URL: jdbc:postgresql://host.docker.internal:5432/spring6
EUREKA_SERVER: http://registry-server:8761/eureka/
GRPC_SERVER_HOST: order-service
GRPC_SERVER_PORT: 8070
KAFKA_URL: kafka:9093
SECURITY_SERVER_CHECK: http://gateway-server:5555/security/custom/authorization/check_token
SERVER_PORT: 8183
extra_hosts:
- "host.docker.internal:host-gateway"
healthcheck:
test: wget --no-verbose --tries=1 --spider invoice-service:8183/actuator/health || exit 1
interval: 12s
timeout: 6s
retries: 10
image: invoice-service:latest
networks:
- Spring6Microservices
ports:
- "8183:8183"
kafka:
image: wurstmeister/kafka:latest
container_name: kafka
depends_on:
- zookeeper
environment:
KAFKA_ADVERTISED_LISTENERS: INSIDE://kafka:9093,OUTSIDE://localhost:9092
KAFKA_AUTO_CREATE_TOPICS_ENABLE: "true"
KAFKA_BROKER_ID: 1
KAFKA_CONFLUENT_SUPPORT_METRICS_ENABLE: "false"
KAFKA_INTER_BROKER_LISTENER_NAME: INSIDE
KAFKA_LISTENERS: INSIDE://0.0.0.0:9093,OUTSIDE://0.0.0.0:9092
KAFKA_LISTENER_NAME: INSIDE
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: INSIDE:PLAINTEXT,OUTSIDE:PLAINTEXT
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
command: "sh -c 'exec /usr/bin/start-kafka.sh & sleep 5 && kafka-topics.sh --create --zookeeper zookeeper:2181 --replication-factor 1 --partitions 1 --topic orders && tail -f /dev/null'"
networks:
- Spring6Microservices
ports:
- "9092:9092"
order-service:
build:
context: ./order-service
dockerfile: ./Dockerfile
container_name: order-service
environment:
CONFIG_SERVER: http://config-server:8888
DATABASE_URL: jdbc:postgresql://host.docker.internal:5432/spring6
EUREKA_SERVER: http://registry-server:8761/eureka/
GRPC_SERVER_PORT: 8070
KAFKA_URL: kafka:9093
SECURITY_SERVER_CHECK: http://gateway-server:5555/security/oauth/introspect
SERVER_PORT: 8182
extra_hosts:
- "host.docker.internal:host-gateway"
depends_on:
config-server:
condition: service_healthy
gateway-server:
condition: service_healthy
kafka:
condition: service_started
registry-server:
condition: service_healthy
security-oauth-service:
condition: service_healthy
healthcheck:
test: wget --no-verbose --tries=1 --spider order-service:8182/actuator/health || exit 1
interval: 12s
timeout: 6s
retries: 10
image: order-service:latest
networks:
- Spring6Microservices
ports:
- "8182:8182"
registry-server:
build:
context: ./registry-server
dockerfile: ./Dockerfile
container_name: registry-server
environment:
SERVER_HOSTNAME: registry-server
SERVER_PORT: 8761
healthcheck:
test: wget --no-verbose --tries=1 --spider registry-server:8761/actuator/health || exit 1
interval: 12s
timeout: 6s
retries: 5
image: registry-server:latest
networks:
- Spring6Microservices
ports:
- "8761:8761"
security-custom-service:
build:
context: ./security-custom-service
dockerfile: ./Dockerfile
container_name: security-custom-service
depends_on:
config-server:
condition: service_healthy
gateway-server:
condition: service_healthy
registry-server:
condition: service_healthy
environment:
CONFIG_SERVER: http://config-server:8888
DATABASE_URL: jdbc:postgresql://host.docker.internal:5432/spring6
EUREKA_SERVER: http://registry-server:8761/eureka/
SERVER_PORT: 8180
extra_hosts:
- "host.docker.internal:host-gateway"
healthcheck:
test: wget --no-verbose --tries=1 --spider security-custom-service:8180/actuator/health || exit 1
interval: 12s
timeout: 6s
retries: 10
image: security-custom-service:latest
networks:
- Spring6Microservices
ports:
- "8180:8180"
security-oauth-service:
build:
context: ./security-oauth-service
dockerfile: ./Dockerfile
container_name: security-oauth-service
depends_on:
config-server:
condition: service_healthy
gateway-server:
condition: service_healthy
registry-server:
condition: service_healthy
environment:
CONFIG_SERVER: http://config-server:8888
DATABASE_URL: jdbc:postgresql://host.docker.internal:5432/spring6
EUREKA_SERVER: http://registry-server:8761/eureka/
SERVER_PORT: 8181
extra_hosts:
- "host.docker.internal:host-gateway"
healthcheck:
test: wget --no-verbose --tries=1 --spider security-oauth-service:8181/actuator/health || exit 1
interval: 12s
timeout: 6s
retries: 10
image: security-oauth-service:latest
networks:
- Spring6Microservices
ports:
- "8181:8181"
zookeeper:
image: wurstmeister/zookeeper:latest
container_name: zookeeper
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
networks:
- Spring6Microservices
ports:
- "2181:2181"
networks:
Spring6Microservices:
external: true
name: Spring6Microservices
# ------------------------------------------------------------------------------------------
# COMMANDS:
#
# 1. Create and start containers:
#
# docker compose -f compose.yml up
#
# 1.1 If you want to create the Docker images use --build
#
#
# 2. Stop and remove containers:
#
# docker compose -f compose.yml down