Docker
Authors: [jLeopoldA]
System Requirements
CPU
OS
Ram
Disk
4vCPU
Ubuntu 18.04
16GB
2.5TB+ (SSD)
Pre-Requisites
sudo apt update -yInstall Docker
# Add Docker's official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
# Add the repository to Apt sources:
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get updateInstall Docker Packages
Verify Docker Engine Installation is Successful
Set Firewall Rules
Set explicit default UFW rules
Allow SSH
Allow remote RPC connections
Building a Node on Fuse with Nethermind client
Since 08.2022 Fuse is moving from OE client to Nethermind. To bootstrap Fuse archive node this guide covers the steps on how to build Nethermind from source and configure it to run for Fuse Network
Clone Fuse Repository
Download Quickstart
You can create an archival node using Quickstart.sh
Query Fuse Node
To access your archival node - use your current server's IP address with port 8545. Ex. http://localhost:8545
Check Docker Logs
Last updated