Created
March 26, 2022 13:16
-
-
Save dalthonmh/aba62d853dcaceb294e2080d2517de51 to your computer and use it in GitHub Desktop.
Install Docker on Windows (WSL) without Docker Desktop...Easy steps!!!
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
wsl -l -v | |
wsl --set-version Ubuntu 2 | |
sudo apt-get update | |
sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common libssl-dev libffi-dev git wget nano | |
sudo groupadd docker | |
sudo usermod -aG docker username | |
idusername | |
curl -fsSl https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | |
curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add | |
echo "deb https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee /etc/apt/sources.list.d/kubernetes.list | |
sudo apt-get update | |
sudo apt-get upgrade -y | |
sudo apt-get autoremove -y | |
sudo apt-get install -y docker-ce containerd.io | |
sudo apt-get install -y kubectl | |
echo "sudo service docker start" >> ~/.profile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment