Docker

Install docker on your VPS

Download the installation shell of docker officially

curl -fsSL https://get.docker.com -o get-docker.sh

Run the shell

sudo sh get-docker.sh

Establish a host mapping path

Find a path that is used to store data on your VPS, for example:

cd /var/lib

Make a new directory, and remember your path

mkdir node_bevm_test_storage

Fetch the docker image

sudo docker pull btclayer2/bevm:v0.1.1

Run a docker container

if you set your own 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.

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"

Check it on the telemetry

Open https://telemetry.bevm.io/ to check your node state.

Last updated