forked from centrifuge/centrifuge-chain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
74 lines (74 loc) · 2.32 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
version: "3.7"
services:
validator-alice:
image: centrifugeio/centrifuge-chain:latest
ports:
- 9933:9933
- 9944:9944
- 30333:30333
networks:
- internet
volumes:
- "~/tmp/centrifuge-chain/alice/:/data"
entrypoint:
- centrifuge-chain
# Local node id: QmRpheLN4JWdAnY7HGJfWFNbfkQCb6tFf4vvA6hgjMZKrR
- --node-key=0000000000000000000000000000000000000000000000000000000000000001
- --chain=local
- --alice
- --bootnodes=/dns4/validator-bob/tcp/30333/p2p/QmSVnNf9HwVMT1Y4cK1P6aoJcEZjmoTXpjKBmAABLMnZEk
- --bootnodes=/dns4/validator-charlie/tcp/30333/p2p/QmV7EhW6J6KgmNdr558RH1mPx2xGGznW7At4BhXzntRFsi
- --ws-external
- --rpc-external
- --no-telemetry
- --rpc-cors=all
validator-bob:
image: centrifugeio/centrifuge-chain:latest
ports:
- 9934:9933
- 9945:9944
- 30334:30333
networks:
- internet
volumes:
- "~/tmp/centrifuge-chain/bob/:/data"
entrypoint:
- centrifuge-chain
# Local node id: QmSVnNf9HwVMT1Y4cK1P6aoJcEZjmoTXpjKBmAABLMnZEk
- --node-key=0000000000000000000000000000000000000000000000000000000000000002
- --chain=local
- --bob
- --bootnodes=/dns4/validator-alice/tcp/30333/p2p/QmRpheLN4JWdAnY7HGJfWFNbfkQCb6tFf4vvA6hgjMZKrR
- --bootnodes=/dns4/validator-charlie/tcp/30333/p2p/QmV7EhW6J6KgmNdr558RH1mPx2xGGznW7At4BhXzntRFsi
- --ws-external
- --rpc-external
- --no-telemetry
- --rpc-cors=all
validator-charlie:
image: centrifugeio/centrifuge-chain:latest
ports:
- 9935:9933
- 9946:9944
- 30335:30333
networks:
- internet
volumes:
- "~/tmp/centrifuge-chain/charlie/:/data"
entrypoint:
- centrifuge-chain
# Local node id: QmV7EhW6J6KgmNdr558RH1mPx2xGGznW7At4BhXzntRFsi
- --node-key=0000000000000000000000000000000000000000000000000000000000000003
- --chain=local
- --charlie
- --bootnodes=/dns4/validator-alice/tcp/30333/p2p/QmRpheLN4JWdAnY7HGJfWFNbfkQCb6tFf4vvA6hgjMZKrR
- --bootnodes=/dns4/validator-bob/tcp/30333/p2p/QmSVnNf9HwVMT1Y4cK1P6aoJcEZjmoTXpjKBmAABLMnZEk
- --ws-external
- --rpc-external
- --no-telemetry
- --rpc-cors=all
# ui:
# image: polkadot-js/apps
# ports:
# - "3000:80"
networks:
internet: