forked from daduz11/hypfs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
77 lines (77 loc) · 1.74 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
version: '3.9'
services:
hypercube_1:
network_mode: 'host'
image: hypercube:latest
environment:
- HYPERCUBE_SIZE=3
- SUPERSET_THRESHOLD=10
- NODE_PORT=8881
hypercube_2:
network_mode: 'host'
image: hypercube:latest
environment:
- HYPERCUBE_SIZE=3
- SUPERSET_THRESHOLD=10
- NODE_PORT=8882
hypercube_3:
network_mode: 'host'
image: hypercube:latest
environment:
- HYPERCUBE_SIZE=3
- SUPERSET_THRESHOLD=10
- NODE_PORT=8883
hypercube_4:
network_mode: 'host'
image: hypercube:latest
environment:
- HYPERCUBE_SIZE=3
- SUPERSET_THRESHOLD=10
- NODE_PORT=8884
hypercube_5:
network_mode: 'host'
image: hypercube:latest
environment:
- HYPERCUBE_SIZE=3
- SUPERSET_THRESHOLD=10
- NODE_PORT=8885
hypercube_6:
network_mode: 'host'
image: hypercube:latest
environment:
- HYPERCUBE_SIZE=3
- SUPERSET_THRESHOLD=10
- NODE_PORT=8886
hypercube_7:
network_mode: 'host'
image: hypercube:latest
environment:
- HYPERCUBE_SIZE=3
- SUPERSET_THRESHOLD=10
- NODE_PORT=8887
hypercube_8:
network_mode: 'host'
image: hypercube:latest
environment:
- HYPERCUBE_SIZE=3
- SUPERSET_THRESHOLD=10
- NODE_PORT=8888
hypercube-client:
network_mode: 'host'
image: hypercube-client:latest
environment:
- HYPERCUBE_SIZE=3
- SUPERSET_THRESHOLD=10
ipfs:
network_mode: 'host'
image: ipfs/go-ipfs:latest
environment:
- IPFS_PROFILE=server
- IPFS_PATH=/ipfsdata
volumes:
- ./data/ipfs:/ipfsdata
ports:
- '4001:4001'
- '127.0.0.1:8080:8080'
- '127.0.0.1:8081:8081'
- '127.0.0.1:5001:5001'