🐳Docker
Authors: [Vince | Nodeify]
System Requirements
Higher clock speed over core count
Ubuntu 22.04
8GB+
At least 2.1TB (TLC NVMe recommended)
Reth 🦀 + Lighthouse 🕯️
Official Docs https://paradigmxyz.github.io/reth/intro.html
Pre-requisites
Update, upgrade, and clean the system, and then firewall management (ufw), Docker, and the Git version control system.
sudo apt update -y && sudo apt upgrade -y && sudo apt auto-remove -y
sudo apt install docker.io docker-compose git ufw -ySet explicit default UFW rules
sudo ufw default deny incoming
sudo ufw default allow outgoingAllow SSH, HTTP and HTTPS
sudo ufw allow 22/tcp
sudo ufw allow 80
sudo ufw allow 443Get the IP address of the host machine, you can use the following command in a terminal or command prompt
Set an A record for a domain, you need to access the domain's DNS settings and create an A record that points to the IP address of the host machine. This configuration allows users to reach your domain by resolving the domain name to the specific IP address associated with your host machine.
Create Reth directory
The first command, mkdir reth, will create a new directory named reth in the current location. The second command, cd reth, will change your current working directory to the newly created reth directory. Now you are inside the "reth" directory and can start storing docker-compose and related files in it.
Generate JWT token
Generate a 32-byte random hexadecimal value using OpenSSL, removes any newline characters, and then save the result into the file "jwt.hex" located in the reth directory.
Create .env file
Paste the following into the file.
Create docker-compose.yml
Paste the following into the docker-compose.yml
Run Reth
Monitor Logs
Use docker logs to monitor your reth and lighthouse nodes. The -f flag ensures you are following the log output
Test Reth RPC 🧪
Reth and Consensus client must be synced before testing.
This should be your result.
Last updated
Was this helpful?