Docker Installation
Follow these steps to install and configure Docker to enable NodeZero functionality on your host. Check out the Docker Documentation for troubleshooting.
Install Docker
Begin by updating your system and installing Docker, run the following commands:
sudo apt update
sudo apt install -y docker.io
Start and enable Docker
Ensure Docker starts automatically, run the following commands:
sudo systemctl start docker
sudo systemctl enable docker
Confirm that Docker was successfully installed
Check the Docker version by running:
docker --version
sudo docker run hello-world