π¦Install Docker
0. Make sure Docker is installed
Official installation document
You can install it using the convenience script provided by Docker Use it at your discretion as it is not recommended for production environments.
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-world1. Download the Kusama snapshot
This step currently is not easily executable. You can also skip it and progress to step 2.
Install lz4 to be able to uncompress the snapshot
Create ~/mangatax directory and download and unpack snapshot in one step into it:
The chain data should now be in ~/mangatax/chains/ksmcc3/db
2. Download chainspec
3. Run the Collator
Add
docker-compose.ymlfile to your home directory with the content below:
Run your node:
Last updated