-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-kafka.yml
205 lines (192 loc) · 6.16 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
version: '2.1'
services:
product:
build: product-service
image: microdaddy/product-service
mem_limit: 512m
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:
mongodb:
condition: service_healthy
kafka:
condition: service_started
product-p2:
build: product-service
image: microdaddy/product-service
mem_limit: 512m
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:
mongodb:
condition: service_healthy
kafka:
condition: service_started
recommendation:
build: recommendation-service
image: microdaddy/recommendation-service
mem_limit: 512m
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:
mongodb:
condition: service_healthy
kafka:
condition: service_started
recommendation-p2:
build: recommendation-service
image: microdaddy/recommendation-service
mem_limit: 512m
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:
mongodb:
condition: service_healthy
kafka:
condition: service_started
review:
build: review-service
image: microdaddy/review-service
mem_limit: 512m
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-p2:
build: review-service
image: microdaddy/review-service
mem_limit: 512m
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: product-composite-service
image: microdaddy/product-composite-service
mem_limit: 512m
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:
condition: service_started
auth-server:
condition: service_healthy
mongodb:
image: mongo:6.0.6
mem_limit: 512m
ports:
- "27017:27017"
command: mongod
environment:
- MONGO_INITDB_ROOT_USERNAME=${MONGODB_USR}
- MONGO_INITDB_ROOT_PASSWORD=${MONGODB_PWD}
healthcheck:
test: "mongosh --username ${MONGODB_USR} --password ${MONGODB_PWD} --eval 'db.stats().ok'"
interval: 5s
timeout: 2s
retries: 60
mysql:
image: mysql:8.0.33
mem_limit: 512m
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PWD}
- MYSQL_DATABASE=reviewdb
- MYSQL_USER=${MYSQL_USR}
- MYSQL_PASSWORD=${MYSQL_PWD}
healthcheck:
test: "/usr/bin/mysql --user=${MYSQL_USR} --password=${MYSQL_PWD} --execute \"SHOW DATABASES;\""
interval: 5s
timeout: 2s
retries: 60
kafka:
image: wurstmeister/kafka:2.13-2.8.1
mem_limit: 512m
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
mem_limit: 512m
ports:
- "2181:2181"
environment:
- KAFKA_ADVERTISED_HOST_NAME=zookeeper
gateway:
build: gateway
image: microdaddy/gateway
mem_limit: 512m
environment:
- SPRING_PROFILE_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
ports:
- "8443:8443"
depends_on:
auth-server:
condition: service_healthy
auth-server:
build: authz
image: microdaddy/auth-server
environment:
- SPRING_PROFILES_ACTIVE=docker
- SPRING_CONFIG_LOCATION=file:/config-repo/application.yml,file:/config-repo/auth-server.yml
volumes:
- $PWD/config-repo:/config-repo
mem_limit: 512m
healthcheck:
test: ["CMD", "curl", "-fs", "http://localhost/actuator/health"]
interval: 5s
timeout: 2s
retries: 60