Last active
July 13, 2022 00:49
-
-
Save kelverarruda/4660e01893be212bdfae0eea55c1ceb7 to your computer and use it in GitHub Desktop.
How to install docker in Windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------ 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