forked from eth-educators/eth-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nethermind.yml
87 lines (86 loc) · 2.35 KB
/
nethermind.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
version: "3.9"
x-logging: &logging
logging:
driver: json-file
options:
max-size: 100m
max-file: "3"
tag: '{{.ImageName}}|{{.Name}}|{{.ImageFullID}}|{{.FullID}}'
services:
execution:
restart: "unless-stopped"
stop_grace_period: 3m
stop_signal: SIGINT
build:
context: ./nethermind
dockerfile: ${NM_DOCKERFILE}
args:
- BUILD_TARGET=${NM_SRC_BUILD_TARGET}
- DOCKER_TAG=${NM_DOCKER_TAG}
image: nethermind:local
# Root so a chown can happen for the secret, then gosu into nethermind. This can become nethermind again
# after merge
user: root
environment:
- JWT_SECRET=${JWT_SECRET}
- OVERRIDE_TTD=${OVERRIDE_TTD}
volumes:
- nm-eth1-data:/var/lib/nethermind
- /etc/localtime:/etc/localtime:ro
- jwtsecret:/var/lib/nethermind/ee-secret
ports:
- ${HOST_IP:-0.0.0.0}:${EL_P2P_PORT:-30303}:${EL_P2P_PORT:-30303}/tcp
- ${HOST_IP:-0.0.0.0}:${EL_P2P_PORT:-30303}:${EL_P2P_PORT:-30303}/udp
networks:
default:
aliases:
- eth1
<<: *logging
entrypoint:
- docker-entrypoint.sh
- dotnet
- /nethermind/Nethermind.Runner.dll
- --datadir
- /var/lib/nethermind
- --Init.WebSocketsEnabled
- "true"
- --Network.DiscoveryPort
- ${EL_P2P_PORT:-30303}
- --Network.P2PPort
- ${EL_P2P_PORT:-30303}
- --Network.MaxActivePeers
- ${EL_MAX_PEER_COUNT:-50}
- --JsonRpc.Enabled
- "true"
- --JsonRpc.EnabledModules
- "Web3,Eth,Subscribe,Net"
- --JsonRpc.Host
- 0.0.0.0
- --JsonRpc.Port
- ${EL_RPC_PORT:-8545}
- --JsonRpc.WebSocketsPort
- ${EL_WS_PORT:-8546}
- --JsonRpc.AdditionalRpcUrls=http://0.0.0.0:${EE_PORT:-8551}|http;ws|engine;eth;subscribe
- --JsonRpc.JwtSecretFile=/var/lib/nethermind/ee-secret/jwtsecret
- --Sync.SnapSync
- "true"
- --Metrics.Enabled
- "true"
- --Metrics.ExposePort
- "6060"
- --config
- ${NETWORK}
# Potentially unsafe to auto-prune
# - --Pruning.FullPruningMaxDegreeOfParallelism
# - "2"
# - --Pruning.FullPruningTrigger
# - "VolumeFreeSpace"
- --Sync.AncientBodiesBarrier
- "1"
- --Sync.AncientReceiptsBarrier
- "1"
- --log
- ${LOG_LEVEL}
volumes:
nm-eth1-data:
jwtsecret: