-
Notifications
You must be signed in to change notification settings - Fork 27
/
compose.yml
209 lines (192 loc) · 5.13 KB
/
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
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
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:
- Spring5Microservices
ports:
- 8888:8888
gateway-server:
build:
context: ./gateway-server
dockerfile: ./Dockerfile
container_name: gateway-server
environment:
CONFIG_SERVER: http://config-server:8888
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:
- Spring5Microservices
ports:
- 5555:5555
order-service:
build:
context: ./order-service
dockerfile: ./Dockerfile
container_name: order-service
environment:
CONFIG_SERVER: http://config-server:8888
SERVER_PORT: 8081
extra_hosts:
- "host.docker.internal:host-gateway"
depends_on:
config-server:
condition: service_healthy
gateway-server:
condition: service_healthy
registry-server:
condition: service_healthy
security-oauth-service:
condition: service_healthy
healthcheck:
test: wget --no-verbose --tries=1 --spider order-service:8081/actuator/health || exit 1
interval: 12s
timeout: 6s
retries: 10
image: order-service:latest
networks:
- Spring5Microservices
ports:
- 8081:8081
pizza-service:
build:
context: ./pizza-service
dockerfile: ./Dockerfile
container_name: pizza-service
depends_on:
config-server:
condition: service_healthy
gateway-server:
condition: service_healthy
registry-server:
condition: service_healthy
security-jwt-service:
condition: service_healthy
environment:
CONFIG_SERVER: http://config-server:8888
SERVER_PORT: 8080
extra_hosts:
- "host.docker.internal:host-gateway"
healthcheck:
test: wget --no-verbose --tries=1 --spider pizza-service:8080/actuator/health || exit 1
interval: 12s
timeout: 6s
retries: 10
image: pizza-service:latest
networks:
- Spring5Microservices
ports:
- 8080:8080
registry-server:
build:
context: ./registry-server
dockerfile: ./Dockerfile
container_name: registry-server
environment:
SERVER_HOSTNAME: localhost
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:
- Spring5Microservices
ports:
- 8761:8761
security-jwt-service:
build:
context: ./security-jwt-service
dockerfile: ./Dockerfile
container_name: security-jwt-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
SERVER_PORT: 8180
extra_hosts:
- "host.docker.internal:host-gateway"
healthcheck:
test: wget --no-verbose --tries=1 --spider security-jwt-service:8180/actuator/health || exit 1
interval: 12s
timeout: 6s
retries: 10
image: security-jwt-service:latest
networks:
- Spring5Microservices
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
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:
- Spring5Microservices
ports:
- 8181:8181
networks:
Spring5Microservices:
external: true
name: Spring5Microservices
# ------------------------------------------------------------------------------------------
# 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