Skip to content
This repository was archived by the owner on Apr 21, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ services:
NETHERMIND_JSONRPCCONFIG_ENGINEHOST: 0.0.0.0
NETHERMIND_JSONRPCCONFIG_ENGINEPORT: 8551
NETHERMIND_HEALTHCHECKSCONFIG_UIENABLED: "true"
NETHERMIND_PRUNINGCONFIG_MODE: None
NETHERMIND_PRUNINGCONFIG_FULLPRUNINGTRIGGER: VolumeFreeSpace
NETHERMIND_PRUNINGCONFIG_FULLPRUNINGMINIMUMDELAYHOURS: 240
NETHERMIND_PRUNINGCONFIG_FULLPRUNINGMAXDEGREEOFPARALLELISM: 0
NETHERMIND_PRUNINGCONFIG_CACHEMB: 2048
NETHERMIND_PRUNINGCONFIG_FULLPRUNINGTHRESHOLDMB: 250000
EXTRA_OPTS: ""
ports:
- "30404:30404/udp"
Expand Down
12 changes: 12 additions & 0 deletions setup-wizard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,3 +143,15 @@ fields:
enum:
- "true"
- "false"
- id: PrunningConfigMode
target:
type: environment
name: NETHERMIND_PRUNINGCONFIG_MODE
title: Prunning Mode Configuration
description: >-
Sets pruning mode. Possible values: 'None', 'Memory', 'Full', 'Hybrid'. You can set up the rest of prunning variables in advanced mode. More information in https://docs.nethermind.io/nethermind/ethereum-client/configuration/pruning.
enum:
- "None"
- "Memory"
- "Full"
- "Hybrid"