Skip to content

Instantly share code, notes, and snippets.

@kelverarruda
Last active July 13, 2022 00:49
Show Gist options
  • Save kelverarruda/4660e01893be212bdfae0eea55c1ceb7 to your computer and use it in GitHub Desktop.
Save kelverarruda/4660e01893be212bdfae0eea55c1ceb7 to your computer and use it in GitHub Desktop.
How to install docker in Windows
------ HOW TO INSTALL DOCKER IN WINDOWS ------
# DOWNLOAD DOCKER FOR WINDOWS
https://www.docker.com/products/docker-desktop
# Run as Administrator (Powershell)
wsl --install
# Enable WSL (Windows Subsystem Linux)
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
# Enable Feature Virtual Machine
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
# Set Default Version WSL to 2
wsl --set-default-version 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment