π¦Install Docker
0. Make sure Docker is installed
curl -fsSL get.docker.com | sudo bash# 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
2. Download chainspec
3. Run the Collator
Last updated