-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
362 lines (329 loc) · 8.79 KB
/
Copy pathdocker-compose.yml
File metadata and controls
362 lines (329 loc) · 8.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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
version: "3.9" # optional since v1.27.0
services:
cache:
networks:
- web_crawler_network
image: redis:latest
restart: always
ports:
- 6379:6379
volumes:
- ~/docker-conf/local/redis/data/:/data
- ~/go/src/github.com/mohamed247/Distributed_Web_Crawler/RedisCache/redis.conf:/usr/local/etc/redis/redis.conf
haproxy:
# net: host
networks:
- web_crawler_network
container_name: haproxy_container
image: haproxy:alpine
depends_on:
- client_facing_server1
- client_facing_server2
- client_facing_server3
restart: always
ports:
- 8080:8080
- 8404:8404
volumes:
- ~/docker-conf/local/haproxy/:/usr/local/etc/haproxy
- ~/go/src/github.com/Mohamed247/Distributed_Web_Crawler/HaProxy/haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg:ro
postgres:
container_name: postgres_container
# network_mode: "host"
networks:
- web_crawler_network
image: postgres:latest
restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=password
- POSTGRES_DB=DistributedWebCrawler
ports:
- 5432:5432
volumes:
- ~/docker-conf/postgresql/data/:/var/lib/postgresql/data
rabbitmq:
image: rabbitmq:3-management-alpine
# network_mode: "host"
networks:
- web_crawler_network
ports:
- 5672:5672
- 15672:15672
volumes:
- ~/docker-conf/rabbitmq/data/:/var/lib/rabbitmq/
- ~/docker-conf/rabbitmq/log/:/var/log/rabbitmq
# LOCK_SERVER --------------------------------------------------
lock_server:
# network_mode: "host"
networks:
- web_crawler_network
depends_on:
- postgres
environment:
- MY_HOST=lock_server
- MY_PORT=9999
- DB_HOST=postgres
- DB_PORT=5432
ports:
- 9999:9999
build:
# network: host
context: ./
dockerfile: ./Server/LockServer/Dockerfile
client_facing_server1:
# network_mode: "host"
networks:
- web_crawler_network
depends_on:
- rabbitmq
- cache
environment:
- MY_HOST=client_facing_server1
- MY_PORT=5555
- MQ_HOST=rabbitmq
- MQ_PORT=5672
- CACHE_HOST=cache
- CACHE_PORT=6379
ports:
- 5555:5555
build:
# network: host
context: ./
dockerfile: ./clientFacingServer/Dockerfile
client_facing_server2:
# network_mode: "host"
networks:
- web_crawler_network
depends_on:
- rabbitmq
- cache
environment:
- MY_HOST=client_facing_server2
- MY_PORT=5556
- MQ_HOST=rabbitmq
- MQ_PORT=5672
- CACHE_HOST=cache
- CACHE_PORT=6379
ports:
- 5556:5556
build:
# network: host
context: ./
dockerfile: ./clientFacingServer/Dockerfile
client_facing_server3:
# network_mode: "host"
networks:
- web_crawler_network
depends_on:
- rabbitmq
- cache
environment:
- MY_HOST=client_facing_server3
- MY_PORT=5557
- MQ_HOST=rabbitmq
- MQ_PORT=5672
- CACHE_HOST=cache
- CACHE_PORT=6379
ports:
- 5557:5557
build:
# network: host
context: ./
dockerfile: ./clientFacingServer/Dockerfile
######################################################################################################################################
#
# ########## # # # ######## ############ ######### ######### ########
# # # # # # # # # # #
# # # # # # # # # # #
# # # # # ######## # ######### ######### ########
# # # # # # # # # # #
# # # # # # # # # # #
# ########## ########### ########### ######## # ######### # # ########
#
######################################################################################################################################
# CLUSTER 1 ---------------------------------------------------
master1:
# network_mode: "host"
networks:
- web_crawler_network
depends_on:
- rabbitmq
- lock_server
environment:
- MY_HOST=master1
- MY_PORT=7777
- LOCK_SERVER_HOST=lock_server
- LOCK_SERVER_PORT=9999
- MQ_HOST=rabbitmq
- MQ_PORT=5672
ports:
- 7777:7777
build:
# network: host
context: ./
dockerfile: ./Server/cluster/master/Dockerfile
worker11:
# network_mode: "host"
networks:
- web_crawler_network
depends_on:
- master1
environment:
- MASTER_HOST=master1
- MASTER_PORT=7777
build:
# network: host
context: ./
dockerfile: ./Server/cluster/worker/Dockerfile
worker12:
# network_mode: "host"
networks:
- web_crawler_network
depends_on:
- master1
environment:
- MASTER_HOST=master1
- MASTER_PORT=7777
build:
# network: host
context: ./
dockerfile: ./Server/cluster/worker/Dockerfile
worker13:
# network_mode: "host"
networks:
- web_crawler_network
depends_on:
- master1
environment:
- MASTER_HOST=master1
- MASTER_PORT=7777
build:
# network: host
context: ./
dockerfile: ./Server/cluster/worker/Dockerfile
networks:
web_crawler_network:
driver: bridge
#MY LAPTOP COUDN'T HANDLE ALL THOSE CONTAINERS OPEN
#SO UNCOMMENT AT YOUR OWN RISK :)
# # CLUSTER 2 ---------------------------------------------------
# master2:
# # network_mode: "host"
# networks:
# - web_crawler_network
# depends_on:
# - rabbitmq
# - lock_server
# environment:
# - MY_HOST=master2
# - MY_PORT=7778
# - LOCK_SERVER_HOST=9999
# - LOCK_SERVER_PORT=lock_server
# - MQ_HOST=rabbitmq
# - MQ_PORT=5672
# ports:
# - 7778:7778
# build:
# # network: host
# context: ./
# dockerfile: ./Server/cluster/master/Dockerfile
# worker21:
# # network_mode: "host"
# networks:
# - web_crawler_network
# depends_on:
# - master2
# environment:
# - MASTER_HOST=master2
# - MASTER_PORT=7778
# build:
# # network: host
# context: ./
# dockerfile: ./Server/cluster/worker/Dockerfile
# worker22:
# # network_mode: "host"
# networks:
# - web_crawler_network
# depends_on:
# - master2
# environment:
# - MASTER_HOST=master2
# - MASTER_PORT=7778
# build:
# # network: host
# context: ./
# dockerfile: ./Server/cluster/worker/Dockerfile
# worker23:
# # network_mode: "host"
# networks:
# - web_crawler_network
# depends_on:
# - master2
# environment:
# - MASTER_HOST=master2
# - MASTER_PORT=7778
# build:
# # network: host
# context: ./
# dockerfile: ./Server/cluster/worker/Dockerfile
# # CLUSTER 3 ---------------------------------------------------
# master3:
# # network_mode: "host"
# networks:
# - web_crawler_network
# depends_on:
# - rabbitmq
# - lock_server
# environment:
# - MY_HOST=master3
# - MY_PORT=7779
# - LOCK_SERVER_HOST=9999
# - LOCK_SERVER_PORT=lock_server
# - MQ_HOST=rabbitmq
# - MQ_PORT=5672
# ports:
# - 7779:7779
# build:
# # network: host
# context: ./
# dockerfile: ./Server/cluster/master/Dockerfile
# worker31:
# # network_mode: "host"
# networks:
# - web_crawler_network
# depends_on:
# - master3
# environment:
# - MASTER_HOST=master3
# - MASTER_PORT=7779
# build:
# # network: host
# context: ./
# dockerfile: ./Server/cluster/worker/Dockerfile
# worker32:
# # network_mode: "host"
# networks:
# - web_crawler_network
# depends_on:
# - master3
# environment:
# - MASTER_HOST=master3
# - MASTER_PORT=7779
# build:
# # network: host
# context: ./
# dockerfile: ./Server/cluster/worker/Dockerfile
# worker33:
# # network_mode: "host"
# networks:
# - web_crawler_network
# depends_on:
# - master3
# environment:
# - MASTER_HOST=master3
# - MASTER_PORT=7779
# build:
# # network: host
# context: ./
# dockerfile: ./Server/cluster/worker/Dockerfile