-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-kafka.yml
222 lines (208 loc) · 6.27 KB
/
docker-compose-kafka.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
210
211
212
213
214
215
216
217
218
219
220
221
222
version: '2.1'
services:
product:
build: microservices/product-service
image: hands-on/product-service
mem_limit: 350m
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker,streaming_partitioned,streaming_instance_0,kafka
- SPRING_CONFIG_LOCATION=file:/config-repo/application.yml,file:/config-repo/product.yml
- SPRING_DATA_MONGODB_AUTHENTICATION_DATABASE=admin
- SPRING_DATA_MONGODB_USERNAME=${MONGODB_USR}
- SPRING_DATA_MONGODB_PASSWORD=${MONGODB_PWD}
volumes:
- $PWD/config-repo:/config-repo
depends_on:
- kafka
- mongodb
product-p1:
build: microservices/product-service
image: hands-on/product-service
mem_limit: 350m
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker,streaming_partitioned,streaming_instance_1,kafka
- SPRING_CONFIG_LOCATION=file:/config-repo/application.yml,file:/config-repo/product.yml
- SPRING_DATA_MONGODB_AUTHENTICATION_DATABASE=admin
- SPRING_DATA_MONGODB_USERNAME=${MONGODB_USR}
- SPRING_DATA_MONGODB_PASSWORD=${MONGODB_PWD}
volumes:
- $PWD/config-repo:/config-repo
depends_on:
- kafka
- mongodb
recommendation:
build: microservices/recommendation-service
image: hands-on/recommendation-service
mem_limit: 350m
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker,streaming_partitioned,streaming_instance_0,kafka
- SPRING_CONFIG_LOCATION=file:/config-repo/application.yml,file:/config-repo/recommendation.yml
- SPRING_DATA_MONGODB_AUTHENTICATION_DATABASE=admin
- SPRING_DATA_MONGODB_USERNAME=${MONGODB_USR}
- SPRING_DATA_MONGODB_PASSWORD=${MONGODB_PWD}
volumes:
- $PWD/config-repo:/config-repo
depends_on:
- kafka
- mongodb
recommendation-p1:
build: microservices/recommendation-service
image: hands-on/recommendation-service
mem_limit: 350m
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker,streaming_partitioned,streaming_instance_1,kafka
- SPRING_CONFIG_LOCATION=file:/config-repo/application.yml,file:/config-repo/recommendation.yml
- SPRING_DATA_MONGODB_AUTHENTICATION_DATABASE=admin
- SPRING_DATA_MONGODB_USERNAME=${MONGODB_USR}
- SPRING_DATA_MONGODB_PASSWORD=${MONGODB_PWD}
volumes:
- $PWD/config-repo:/config-repo
depends_on:
- kafka
- mongodb
review:
build: microservices/review-service
image: hands-on/review-service
mem_limit: 350m
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker,streaming_partitioned,streaming_instance_0,kafka
- SPRING_CONFIG_LOCATION=file:/config-repo/application.yml,file:/config-repo/review.yml
- SPRING_DATASOURCE_USERNAME=${MYSQL_USR}
- SPRING_DATASOURCE_PASSWORD=${MYSQL_PWD}
volumes:
- $PWD/config-repo:/config-repo
depends_on:
mysql:
condition: service_healthy
kafka:
condition: service_started
review-p1:
build: microservices/review-service
image: hands-on/review-service
mem_limit: 350m
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker,streaming_partitioned,streaming_instance_1,kafka
- SPRING_CONFIG_LOCATION=file:/config-repo/application.yml,file:/config-repo/review.yml
- SPRING_DATASOURCE_USERNAME=${MYSQL_USR}
- SPRING_DATASOURCE_PASSWORD=${MYSQL_PWD}
volumes:
- $PWD/config-repo:/config-repo
depends_on:
mysql:
condition: service_healthy
kafka:
condition: service_started
product-composite:
build: microservices/product-composite-service
image: hands-on/product-composite-service
mem_limit: 350m
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker,streaming_partitioned,kafka
- SPRING_CONFIG_LOCATION=file:/config-repo/application.yml,file:/config-repo/product-composite.yml
volumes:
- $PWD/config-repo:/config-repo
depends_on:
- kafka
gateway:
build: spring-cloud/gateway
image: hands-on/gateway
mem_limit: 350m
networks:
- my-network
ports:
- "8443:8443"
environment:
- SPRING_PROFILES_ACTIVE=docker,kafka
- SPRING_CONFIG_LOCATION=file:/config-repo/application.yml,file:/config-repo/gateway.yml
- SERVER_SSL_KEY_STORE_PASSWORD=${GATEWAY_TLS_PWD}
volumes:
- $PWD/config-repo:/config-repo
auth-server:
build: spring-cloud/authorization-server
image: hands-on/auth-server
mem_limit: 350m
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker,kafka
- SPRING_CONFIG_LOCATION=file:/config-repo/application.yml,file:/config-repo/auth-server.yml
volumes:
- $PWD/config-repo:/config-repo
# $ mongo
mongodb:
image: mongo:3.6.9
restart: always
mem_limit: 350m
networks:
- my-network
ports:
- "27017:27017"
command: mongod --smallfiles
environment:
- MONGO_INITDB_ROOT_USERNAME=${MONGODB_USR}
- MONGO_INITDB_ROOT_PASSWORD=${MONGODB_PWD}
healthcheck:
test: "mongo --eval 'db.stats().ok'"
interval: 20s
timeout: 5s
retries: 10
# $ mysql -uroot -h127.0.0.1 -p
mysql:
image: mysql:5.7
restart: always
mem_limit: 350m
networks:
- my-network
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PWD}
- MYSQL_DATABASE=review-db
- MYSQL_USER=${MYSQL_USR}
- MYSQL_PASSWORD=${MYSQL_PWD}
healthcheck:
test: "/usr/bin/mysql --user=${MYSQL_USR} --password=${MYSQL_PWD} --execute \"SHOW DATABASES;\""
interval: 20s
timeout: 5s
retries: 10
kafka:
image: wurstmeister/kafka:2.12-2.1.0
restart: always
mem_limit: 350m
networks:
- my-network
ports:
- "9092:9092"
environment:
- KAFKA_ADVERTISED_HOST_NAME=kafka
- KAFKA_ADVERTISED_PORT=9092
- KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181
depends_on:
- zookeeper
zookeeper:
image: wurstmeister/zookeeper:3.4.6
restart: always
mem_limit: 350m
networks:
- my-network
ports:
- "2181:2181"
environment:
- KAFKA_ADVERTISED_HOST_NAME=zookeeper
networks:
my-network:
name: my-network