-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
91 lines (91 loc) · 2.23 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
version: "3.7"
services:
sentry:
ports:
- "9944:9944"
- "9933:9933"
- "30333:30333"
volumes:
- node-data:/data
image: laminar/laminar-node:latest
restart: always
command:
- "--base-path=/data/sentry"
- "--chain=turbulence"
- "--node-key=${SENTRY_1}"
- "--unsafe-ws-external"
- "--unsafe-rpc-external"
- "--rpc-cors=all"
- "--name=laminar-sentry"
- "--ws-max-connections=200"
- "--in-peers=150"
- "--wasm-execution=Compiled"
- "--no-prometheus"
validator-1:
ports:
- "19944:9944"
- "19933:9933"
- "30334:30334"
volumes:
- node-data:/data
image: laminar/laminar-node:latest
restart: always
command:
- "--base-path=/data/validator-1"
- "--chain=turbulence"
- "--node-key=${VALIDATOR_1}"
- "--validator"
- "--unsafe-ws-external"
- "--unsafe-rpc-external"
- "--rpc-cors=all"
- "--name=laminar-validator-1"
- "--port=30334"
- "--wasm-execution=Compiled"
- "--no-prometheus"
# - "--rpc-methods=Unsafe"
validator-2:
ports:
- "29944:9944"
- "29933:9933"
- "30335:30335"
volumes:
- node-data:/data
image: laminar/laminar-node:latest
restart: always
command:
- "--base-path=/data/validator-2"
- "--chain=turbulence"
- "--node-key=${VALIDATOR_2}"
- "--validator"
- "--unsafe-ws-external"
- "--unsafe-rpc-external"
- "--rpc-cors=all"
- "--name=laminar-validator-2"
- "--port=30335"
- "--wasm-execution=Compiled"
- "--no-prometheus"
# - "--rpc-methods=Unsafe"
validator-3:
ports:
- "39944:9944"
- "39933:9933"
- "30336:30336"
volumes:
- node-data:/data
image: laminar/laminar-node:latest
restart: always
command:
- "--base-path=/data/validator-3"
- "--chain=turbulence"
- "--node-key=${VALIDATOR_3}"
- "--validator"
- "--unsafe-ws-external"
- "--unsafe-rpc-external"
- "--rpc-cors=all"
- "--name=laminar-validator-3"
- "--port=30336"
- "--wasm-execution=Compiled"
- "--no-prometheus"
# - "--rpc-methods=Unsafe"
volumes:
node-data: