update nethermind with traces

This commit is contained in:
Sebastian
2023-01-07 12:48:51 +01:00
parent 213d972132
commit fafc0fa051

View File

@@ -2,13 +2,17 @@ version: '3.1'
services: services:
nethermind-mainnet: nethermind-mainnet:
image: nethermind/nethermind:latest image: nethermind/nethermind:1.15.0
restart: always restart: always
stop_grace_period: 1m stop_grace_period: 1m
command: | command: |
--JsonRpc.Enabled=true --JsonRpc.Enabled=true
--JsonRpc.JwtSecretFile=/jwt.hex --JsonRpc.JwtSecretFile=/jwt.hex
--Metrics.Enabled=true --Metrics.Enabled=true
--TraceStore.Enabled=true
--TraceStore.BlocksToKeep=0
--TraceStore.TraceTypes=Trace,Rewards
--Sync.FastSync=false
ports: ports:
- '34896:34896/tcp' # p2p - '34896:34896/tcp' # p2p
- '34896:34896/udp' # p2p - '34896:34896/udp' # p2p
@@ -23,7 +27,7 @@ services:
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
environment: environment:
- NETHERMIND_CONFIG=mainnet - NETHERMIND_CONFIG=mainnet
- NETHERMIND_JSONRPCCONFIG_ENGINEENABLEDMODULES=[Eth,AccountAbstraction,Subscribe,TxPool,Web3,Personal,Proof,Net,Parity,Health] - NETHERMIND_JSONRPCCONFIG_ENGINEENABLEDMODULES=[Eth,AccountAbstraction,Subscribe,TxPool,Web3,Personal,Proof,Net,Parity,Health,Trace]
- NETHERMIND_JSONRPCCONFIG_ENGINEHOST=0.0.0.0 - NETHERMIND_JSONRPCCONFIG_ENGINEHOST=0.0.0.0
- NETHERMIND_JSONRPCCONFIG_ENGINEPORT=8551 - NETHERMIND_JSONRPCCONFIG_ENGINEPORT=8551
- NETHERMIND_JSONRPCCONFIG_HOST=0.0.0.0 - NETHERMIND_JSONRPCCONFIG_HOST=0.0.0.0