-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
502 lines (439 loc) · 14.6 KB
/
docker-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
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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
version: '3.4'
# This is an example docker-compose file to quickly test an IPFS Cluster
# with multiple peers on a contained environment.
# It runs 3 cluster peers (cluster0, cluster1...) attached to go-ipfs daemons
# (ipfs0, ipfs1...) using the CRDT consensus component. Cluster peers
# autodiscover themselves using mDNS on the docker internal network.
#
# To interact with the cluster use "ipfs-cluster-ctl" (the cluster0 API port is
# exposed to the locahost. You can also "docker exec -ti cluster0 sh" and run
# it from the container. "ipfs-cluster-ctl peers ls" should show all 3 peers a few
# seconds after start.
#
# For persistence, a "compose" folder is created and used to store configurations
# and states. This can be used to edit configurations in subsequent runs. It looks
# as follows:
#
# compose/
# |-- cluster0
# |-- cluster1
# |-- ...
# |-- ipfs0
# |-- ipfs1
# |-- ...
#
# During the first start, default configurations are created for all peers.
services:
##################################################################################
## Cluster PEER 0 ################################################################
##################################################################################
ipfs0:
container_name: ipfs0
image: ipfs/go-ipfs:latest
ports:
- "4001:4001" # ipfs swarm - expose if needed/wanted
- "127.0.0.1:5001:5001" # ipfs api - expose if needed/wanted
- "127.0.0.1:8080:8080" # ipfs gateway - expose if needed/wanted
volumes:
- ./compose/ipfs0:/data/ipfs
cluster0:
container_name: cluster0
image: ipfs/ipfs-cluster:latest
depends_on:
- ipfs0
environment:
CLUSTER_PEERNAME: cluster0
CLUSTER_SECRET: ${CLUSTER_SECRET} # From shell variable if set
CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs0/tcp/5001
CLUSTER_CRDT_TRUSTEDPEERS: '*' # Trust all peers in Cluster
CLUSTER_RESTAPI_HTTPLISTENMULTIADDRESS: /ip4/0.0.0.0/tcp/9094 # Expose API
CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
ports:
# Open API port (allows ipfs-cluster-ctl usage on host)
- "127.0.0.1:9094:9094"
# The cluster swarm port would need to be exposed if this container
# was to connect to cluster peers on other hosts.
# But this is just a testing cluster.
# - "9095:9095" # Cluster IPFS Proxy endpoint
# - "9096:9096" # Cluster swarm endpoint
volumes:
- ./compose/cluster0:/data/ipfs-cluster
##################################################################################
## Cluster PEER 1 ################################################################
##################################################################################
# See Cluster PEER 0 for comments (all removed here and below)
ipfs1:
container_name: ipfs1
image: ipfs/go-ipfs:latest
volumes:
- ./compose/ipfs1:/data/ipfs
cluster1:
container_name: cluster1
image: ipfs/ipfs-cluster:latest
depends_on:
- ipfs1
environment:
CLUSTER_PEERNAME: cluster1
CLUSTER_SECRET: ${CLUSTER_SECRET}
CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs1/tcp/5001
CLUSTER_CRDT_TRUSTEDPEERS: '*'
CLUSTER_RESTAPI_HTTPLISTENMULTIADDRESS: /ip4/0.0.0.0/tcp/9094
CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
ports:
- "127.0.0.1:9194:9094"
volumes:
- ./compose/cluster1:/data/ipfs-cluster
##################################################################################
## Cluster PEER 2 ################################################################
##################################################################################
# See Cluster PEER 0 for comments (all removed here and below)
ipfs2:
container_name: ipfs2
image: ipfs/go-ipfs:latest
volumes:
- ./compose/ipfs2:/data/ipfs
cluster2:
container_name: cluster2
image: ipfs/ipfs-cluster:latest
depends_on:
- ipfs2
environment:
CLUSTER_PEERNAME: cluster2
CLUSTER_SECRET: ${CLUSTER_SECRET}
CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs2/tcp/5001
CLUSTER_CRDT_TRUSTEDPEERS: '*'
CLUSTER_RESTAPI_HTTPLISTENMULTIADDRESS: /ip4/0.0.0.0/tcp/9094
CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
ports:
- "127.0.0.1:9294:9094"
volumes:
- ./compose/cluster2:/data/ipfs-cluster
# For adding more peers, copy PEER 1 and rename things to ipfs2, cluster2.
# Keep bootstrapping to cluster0.
ipfs3:
container_name: ipfs3
image: ipfs/go-ipfs:latest
volumes:
- ./compose/ipfs3:/data/ipfs
cluster3:
container_name: cluster3
image: ipfs/ipfs-cluster:latest
depends_on:
- ipfs3
environment:
CLUSTER_PEERNAME: cluster3
CLUSTER_SECRET: ${CLUSTER_SECRET}
CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs3/tcp/5001
CLUSTER_CRDT_TRUSTEDPEERS: '*'
CLUSTER_RESTAPI_HTTPLISTENMULTIADDRESS: /ip4/0.0.0.0/tcp/9094
CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
ports:
- "127.0.0.1:9394:9094"
volumes:
- ./compose/cluster3:/data/ipfs-cluster
ipfs4:
container_name: ipfs4
image: ipfs/go-ipfs:latest
volumes:
- ./compose/ipfs4:/data/ipfs
cluster4:
container_name: cluster4
image: ipfs/ipfs-cluster:latest
depends_on:
- ipfs4
environment:
CLUSTER_PEERNAME: cluster4
CLUSTER_SECRET: ${CLUSTER_SECRET}
CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs4/tcp/5001
CLUSTER_CRDT_TRUSTEDPEERS: '*'
CLUSTER_RESTAPI_HTTPLISTENMULTIADDRESS: /ip4/0.0.0.0/tcp/9094
CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
ports:
- "127.0.0.1:9494:9094"
volumes:
- ./compose/cluster4:/data/ipfs-cluster
ipfs5:
container_name: ipfs5
image: ipfs/go-ipfs:latest
volumes:
- ./compose/ipfs5:/data/ipfs
cluster5:
container_name: cluster5
image: ipfs/ipfs-cluster:latest
depends_on:
- ipfs5
environment:
CLUSTER_PEERNAME: cluster5
CLUSTER_SECRET: ${CLUSTER_SECRET}
CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs5/tcp/5001
CLUSTER_CRDT_TRUSTEDPEERS: '*'
CLUSTER_RESTAPI_HTTPLISTENMULTIADDRESS: /ip4/0.0.0.0/tcp/9094
CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
ports:
- "127.0.0.1:9594:9094"
volumes:
- ./compose/cluster5:/data/ipfs-cluster
ipfs6:
container_name: ipfs6
image: ipfs/go-ipfs:latest
volumes:
- ./compose/ipfs6:/data/ipfs
cluster6:
container_name: cluster6
image: ipfs/ipfs-cluster:latest
depends_on:
- ipfs6
environment:
CLUSTER_PEERNAME: cluster6
CLUSTER_SECRET: ${CLUSTER_SECRET}
CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs6/tcp/5001
CLUSTER_CRDT_TRUSTEDPEERS: '*'
CLUSTER_RESTAPI_HTTPLISTENMULTIADDRESS: /ip4/0.0.0.0/tcp/9094
CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
ports:
- "127.0.0.1:9694:9094"
volumes:
- ./compose/cluster6:/data/ipfs-cluster
ipfs7:
container_name: ipfs7
image: ipfs/go-ipfs:latest
volumes:
- ./compose/ipfs7:/data/ipfs
cluster7:
container_name: cluster7
image: ipfs/ipfs-cluster:latest
depends_on:
- ipfs7
environment:
CLUSTER_PEERNAME: cluster7
CLUSTER_SECRET: ${CLUSTER_SECRET}
CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs7/tcp/5001
CLUSTER_CRDT_TRUSTEDPEERS: '*'
CLUSTER_RESTAPI_HTTPLISTENMULTIADDRESS: /ip4/0.0.0.0/tcp/9094
CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
ports:
- "127.0.0.1:9794:9094"
volumes:
- ./compose/cluster7:/data/ipfs-cluster
ipfs8:
container_name: ipfs8
image: ipfs/go-ipfs:latest
volumes:
- ./compose/ipfs8:/data/ipfs
cluster8:
container_name: cluster8
image: ipfs/ipfs-cluster:latest
depends_on:
- ipfs8
environment:
CLUSTER_PEERNAME: cluster8
CLUSTER_SECRET: ${CLUSTER_SECRET}
CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs8/tcp/5001
CLUSTER_CRDT_TRUSTEDPEERS: '*'
CLUSTER_RESTAPI_HTTPLISTENMULTIADDRESS: /ip4/0.0.0.0/tcp/9094
CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
ports:
- "127.0.0.1:9894:9094"
volumes:
- ./compose/cluster8:/data/ipfs-cluster
ipfs9:
container_name: ipfs9
image: ipfs/go-ipfs:latest
volumes:
- ./compose/ipfs9:/data/ipfs
cluster9:
container_name: cluster9
image: ipfs/ipfs-cluster:latest
depends_on:
- ipfs9
environment:
CLUSTER_PEERNAME: cluster9
CLUSTER_SECRET: ${CLUSTER_SECRET}
CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs9/tcp/5001
CLUSTER_CRDT_TRUSTEDPEERS: '*'
CLUSTER_RESTAPI_HTTPLISTENMULTIADDRESS: /ip4/0.0.0.0/tcp/9094
CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
ports:
- "127.0.0.1:9994:9094"
volumes:
- ./compose/cluster9:/data/ipfs-cluster
# ipfs10:
# container_name: ipfs10
# image: ipfs/go-ipfs:latest
# volumes:
# - ./compose/ipfs10:/data/ipfs
# cluster10:
# container_name: cluster10
# image: ipfs/ipfs-cluster:latest
# depends_on:
# - ipfs10
# environment:
# CLUSTER_PEERNAME: cluster10
# CLUSTER_SECRET: ${CLUSTER_SECRET}
# CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs10/tcp/5001
# CLUSTER_CRDT_TRUSTEDPEERS: '*'
# CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
# volumes:
# - ./compose/cluster10:/data/ipfs-cluster
# ipfs11:
# container_name: ipfs11
# image: ipfs/go-ipfs:latest
# volumes:
# - ./compose/ipfs11:/data/ipfs
# cluster11:
# container_name: cluster11
# image: ipfs/ipfs-cluster:latest
# depends_on:
# - ipfs11
# environment:
# CLUSTER_PEERNAME: cluster11
# CLUSTER_SECRET: ${CLUSTER_SECRET}
# CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs11/tcp/5001
# CLUSTER_CRDT_TRUSTEDPEERS: '*'
# CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
# volumes:
# - ./compose/cluster11:/data/ipfs-cluster
# ipfs12:
# container_name: ipfs12
# image: ipfs/go-ipfs:latest
# volumes:
# - ./compose/ipfs12:/data/ipfs
# cluster12:
# container_name: cluster12
# image: ipfs/ipfs-cluster:latest
# depends_on:
# - ipfs12
# environment:
# CLUSTER_PEERNAME: cluster12
# CLUSTER_SECRET: ${CLUSTER_SECRET}
# CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs12/tcp/5001
# CLUSTER_CRDT_TRUSTEDPEERS: '*'
# CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
# volumes:
# - ./compose/cluster12:/data/ipfs-cluster
# ipfs13:
# container_name: ipfs13
# image: ipfs/go-ipfs:latest
# volumes:
# - ./compose/ipfs13:/data/ipfs
# cluster13:
# container_name: cluster13
# image: ipfs/ipfs-cluster:latest
# depends_on:
# - ipfs13
# environment:
# CLUSTER_PEERNAME: cluster13
# CLUSTER_SECRET: ${CLUSTER_SECRET}
# CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs13/tcp/5001
# CLUSTER_CRDT_TRUSTEDPEERS: '*'
# CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
# volumes:
# - ./compose/cluster13:/data/ipfs-cluster
# ipfs14:
# container_name: ipfs14
# image: ipfs/go-ipfs:latest
# volumes:
# - ./compose/ipfs14:/data/ipfs
# cluster14:
# container_name: cluster14
# image: ipfs/ipfs-cluster:latest
# depends_on:
# - ipfs14
# environment:
# CLUSTER_PEERNAME: cluster14
# CLUSTER_SECRET: ${CLUSTER_SECRET}
# CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs14/tcp/5001
# CLUSTER_CRDT_TRUSTEDPEERS: '*'
# CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
# volumes:
# - ./compose/cluster14:/data/ipfs-cluster
# ipfs15:
# container_name: ipfs15
# image: ipfs/go-ipfs:latest
# volumes:
# - ./compose/ipfs15:/data/ipfs
# cluster15:
# container_name: cluster15
# image: ipfs/ipfs-cluster:latest
# depends_on:
# - ipfs15
# environment:
# CLUSTER_PEERNAME: cluster15
# CLUSTER_SECRET: ${CLUSTER_SECRET}
# CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs15/tcp/5001
# CLUSTER_CRDT_TRUSTEDPEERS: '*'
# CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
# volumes:
# - ./compose/cluster15:/data/ipfs-cluster
# ipfs16:
# container_name: ipfs16
# image: ipfs/go-ipfs:latest
# volumes:
# - ./compose/ipfs16:/data/ipfs
# cluster16:
# container_name: cluster16
# image: ipfs/ipfs-cluster:latest
# depends_on:
# - ipfs16
# environment:
# CLUSTER_PEERNAME: cluster16
# CLUSTER_SECRET: ${CLUSTER_SECRET}
# CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs16/tcp/5001
# CLUSTER_CRDT_TRUSTEDPEERS: '*'
# CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
# volumes:
# - ./compose/cluster16:/data/ipfs-cluster
# ipfs17:
# container_name: ipfs17
# image: ipfs/go-ipfs:latest
# volumes:
# - ./compose/ipfs17:/data/ipfs
# cluster17:
# container_name: cluster17
# image: ipfs/ipfs-cluster:latest
# depends_on:
# - ipfs17
# environment:
# CLUSTER_PEERNAME: cluster17
# CLUSTER_SECRET: ${CLUSTER_SECRET}
# CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs17/tcp/5001
# CLUSTER_CRDT_TRUSTEDPEERS: '*'
# CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
# volumes:
# - ./compose/cluster17:/data/ipfs-cluster
# ipfs18:
# container_name: ipfs18
# image: ipfs/go-ipfs:latest
# volumes:
# - ./compose/ipfs18:/data/ipfs
# cluster18:
# container_name: cluster18
# image: ipfs/ipfs-cluster:latest
# depends_on:
# - ipfs18
# environment:
# CLUSTER_PEERNAME: cluster18
# CLUSTER_SECRET: ${CLUSTER_SECRET}
# CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs18/tcp/5001
# CLUSTER_CRDT_TRUSTEDPEERS: '*'
# CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
# volumes:
# - ./compose/cluster18:/data/ipfs-cluster
# ipfs19:
# container_name: ipfs19
# image: ipfs/go-ipfs:latest
# volumes:
# - ./compose/ipfs19:/data/ipfs
# cluster19:
# container_name: cluster19
# image: ipfs/ipfs-cluster:latest
# depends_on:
# - ipfs19
# environment:
# CLUSTER_PEERNAME: cluster19
# CLUSTER_SECRET: ${CLUSTER_SECRET}
# CLUSTER_IPFSHTTP_NODEMULTIADDRESS: /dns4/ipfs19/tcp/5001
# CLUSTER_CRDT_TRUSTEDPEERS: '*'
# CLUSTER_MONITORPINGINTERVAL: 2s # Speed up peer discovery
# volumes:
# - ./compose/cluster19:/data/ipfs-cluster