Skip to main content
πŸŽ“ Claude Code Masterclass Learn AI-assisted development on Udemy β€” plus the companion book on Leanpub & Amazon. Start Learning
Install Docker on Windows with WSL2
DevOps

Install Docker on Windows with WSL2 (Step-by-Step 2026)

Step-by-step guide to install Docker on Windows WSL2. Copy-paste commands, verify installation, and configure for production.

LB
Luca Berton
Β· 1 min read

Here is how to install Docker on Windows using WSL2 in 2026. Tested and verified.

Option 1: Docker Desktop (GUI)

  1. Download Docker Desktop from https://www.docker.com/products/docker-desktop/
  2. Run the installer β€” ensure β€œUse WSL 2 instead of Hyper-V” is checked
  3. Restart your computer
# Verify in PowerShell
docker --version
docker run hello-world

Option 2: Docker Engine Inside WSL2 (No Desktop)

# Inside WSL2 Ubuntu
sudo apt-get update
sudo apt-get install -y ca-certificates curl gnupg

# Add Docker repository
sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | sudo tee /etc/apt/sources.list.d/docker.list

# Install
sudo apt-get update
sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin

# Start Docker (WSL2 doesn't use systemd by default)
sudo service docker start

# Add user to docker group
sudo usermod -aG docker $USER
#Docker #Installation #Windows WSL2 #Tutorial #DevOps
Share:
Kubernetes & Containerization

Need help with Kubernetes & Containerization?

Master Kubernetes and container orchestration with hands-on workshops and architecture consulting.

Learn more about Kubernetes & Containerization

Want to operate this yourself, in production?

Take the free AI Platform Engineer Readiness Scorecard to see which skills transfer β€” then build a production-shaped AI platform in the 4-week Bootcamp.

Take the Scorecard β†’
Luca Berton β€” The Production AI Expert, Docker Captain

Luca Berton

The Production AI Expert Β· Docker Captain Β· KubeCon Speaker

15+ years in enterprise infrastructure. Author of 8 technical books, creator of Ansible Pilot (1M+ YouTube views, 648K site users). Former Red Hat engineer. Speaker at KubeCon EU 2026 and Red Hat Summit 2026.

Free 30-min Production AI consultation

Book Now