Installation

Update and Install Dependencies

apt update -y && apt upgrade -y && apt autoremove -y && apt install screen zip unzip curl -y

Set up Docker's apt repository

# Add Docker's official GPG key:
sudo apt update
sudo apt install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc

# Add the repository to Apt sources:
sudo tee /etc/apt/sources.list.d/docker.sources <<EOF
Types: deb
URIs: https://download.docker.com/linux/ubuntu
Suites: $(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}")
Components: stable
Signed-By: /etc/apt/keyrings/docker.asc
EOF

sudo apt update

Install the Docker packages.

circle-info

Note

The Docker service starts automatically after installation. To verify that Docker is running, use:

Some systems may have this behavior disabled and will require a manual start:

Download & Extract From Snapshots

Run Nodes


Useful RPC Command

Useful CLI Command

circle-info

Note

Please get in touch with us if the snapshots not available for download. we'll try our best to mirror it to another host.

Last updated