Docker
Install docker on your VPS
Download the installation shell of docker officially
Run the shell
Establish a host mapping path
Find a path that is used to store data on your VPS, for example:
Make a new directory, and remember your path
Fetch the docker image
Run a docker container
if you set your hosting map path, you will replace "/var/lib/node_bevm_test_storage" on your own and you need to replace "your_node_name" to the name you fancy.
If you want to get incentives from the BEVM TestNet FullNode Program, set "your_node_name" as the BEVM address.
To synchronize swiftly, you can manually configure a boot node in the following way. sudo docker run -d -v /var/lib/node_bevm_test_storage:/root/.local/share/bevm btclayer2/bevm:v0.1.1 bevm "--chain=testnet" "--name=your_node_name" "--pruning=archive" --telemetry-url "wss://telemetry.bevm.io/submit 0" --bootnodes /ip4/publicIP/tcp/30333/ws/p2p/nodePublicKey Where you can find bootnode here
Last updated