Launch a Validator Node
How to launch Etherlite validator node with Docker Compose and OpenEthereum
Install Docker Engine and Docker Compose following the original instructions https://docs.docker.com/get-docker/ and https://docs.docker.com/compose/instal/
Clone this repo:
To be a validator, you need to download the binary from official etherlite
Create password file for mining account.
Create your mining account
Copy
.env.example
to.env
and configure the.env
file. There are a few settings you need to define:EXT_IP
- External IP of the current server.ACCOUNT
- Your mining address (with leading0x
).
Start your node.
After docker containers are created, the node will sync with the chain (may take a while).
To restart you need to use docker-compose stop
and docker-compose start
being in the validator-node-dockerized
directory.
Last updated