📡 You're offline — showing cached content
New version available!
Quick Access
Tutorials Docker Installing Docker

Installing Docker

3 min read
Install Docker on Ubuntu, macOS, and Windows and verify the installation works correctly.

Installing Docker

# Ubuntu/Debian
curl -fsSL https://get.docker.com | sh
sudo usermod -aG docker $USER

# macOS / Windows — download Docker Desktop from docker.com

# Verify
docker version
docker run hello-world