πŸ¦†Install Docker

0. Make sure Docker is installed

Official installation document

curl -fsSL get.docker.com | sudo bash

β€’ If you are running docker commands using a non-root user, make sure it is in the docker group. To add the current user to docker group, run the following commands:

# Create the `docker` group
sudo groupadd docker

# Add your current user to the docker group.
sudo usermod -aG docker $USER

# Run the following command to activate the changes to groups
newgrp docker

# Verify that you can run docker commands without sudo
docker run hello-world

1. Download the Kusama snapshot

  1. Install lz4 to be able to uncompress the snapshot

  1. Create ~/mangatax directory and download and unpack snapshot in one step into it:

  1. The chain data should now be in ~/mangatax/chains/ksmcc3/db

2. Download chainspec

3. Run the Collator

  1. Add docker-compose.yml file to your home directory with the content below:

Replace <your_node_name> in the following code and then execute

  1. Run your node:

Last updated