Skip to content

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
Run a test container to verify functionality by running:
sudo docker run hello-world

Next Step

looks_3 H3-CLI Installation chevron_right
Test connectivity and Docker to confirm readiness.