Instructions for starting a node:
- Install and configure docker and docker-compose
git clone https://github.com/ahakla/elrond-node.git- clone the repositorycd elrond-node- open the folder with the node- In the file
docker-compose.ymlspecify the desired version for ELROND_VERSION - nodes and CONFIG_VERSION - configuration files (tag from github is specified) docker-compose build- build the applicationdocker-compose run -w /opt/app/config elrond sh -c "keygenerator > output_keys"- generate a new wallet (you need to execute it if it is not there, if there is then copy the files to the folder./config/)docker-compose run -w /opt/app/config elrond sh -c "cp /tmp/config/* /opt/app/config/"- copy the configuration files from the temporary folder (need to be done if you do not have files configuration in the folder./config/)docker-compose up -d- run the node in daemon mode (to view the logs, use the commanddocker-compose logs --tail 100 -f).