forked from centrifuge/centrifuge-chain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-local-relay.yml
61 lines (60 loc) · 1.52 KB
/
docker-compose-local-relay.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
# Node Key Alice: `subkey inspect //Alice`
# Node Key Bob: `subkey inspect //Bob`
version: '3'
services:
node_alice:
container_name: alice
image: "parity/polkadot:v0.9.38"
platform: "linux/amd64"
ports:
- "30333:30333"
- "9933:9933"
- "9944:9944"
volumes:
- type: bind
source: ./res/rococo-local.json
target: /chainspec.json
read_only: true
command: >
--chain=/chainspec.json
--node-key=e5be9a5092b81bca64be81d212e7f2f9eba183bb7a90954f7b76361f6edb5c0a
--wasm-execution=compiled
--execution=wasm
--base-path=/data
--port 30333
--rpc-port 9933
--ws-port 9944
--rpc-external
--rpc-cors all
--ws-external
--rpc-methods=Unsafe
--alice
--log="main,info,xcm=trace,xcm-executor=trace"
node_bob:
container_name: bob
image: "parity/polkadot:v0.9.38"
platform: "linux/amd64"
ports:
- "30344:30333"
- "9935:9933"
- "9945:9944"
volumes:
- type: bind
source: ./res/rococo-local.json
target: /chainspec.json
read_only: true
command: >
--chain=/chainspec.json
--node-key=398f0c28f98885e046333d4a41c19cee4c37368a9832c6502f6cfd182e2aef89
--base-path=/data
--wasm-execution=compiled
--execution=wasm
--port 30333
--rpc-port 9933
--ws-port 9944
--rpc-external
--ws-external
--rpc-cors all
--rpc-methods=Unsafe
--bob
--log="main,info,xcm=trace,xcm-executor=trace"