Install Prerequisites
Install Docker on your computer.
- Install Docker Desktop on Windows
-
Install Docker on Linux and Raspberry Pi
Docker has a script to install Docker on Debian, Ubuntu, and Raspberry Pi OS. Run this script using the following command.
curl -fsSL https://get.docker.com -o get-docker.sh && sudo sh get-docker.shDocker installation notes
On arm/v6 (Raspberry Pi Zero and BeagleBone), install Docker using:
sudo apt update sudo apt install -y docker.io sudo usermod -aG docker $USERReview the Manage Docker as a non-root user document.
-
Grant the current user Docker rights
sudo usermod -aG docker $USER -
Reboot the system.
-