Установка docker в виртуальную машину

На гипервизоре в powershell включить у нужной машины поддержку vt-x
Set-VMProcessor -VMName <VMName> -ExposeVirtualizationExtensions $true

На виртуальной машине
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
wsl –install
wsl –list –online
wsl –install -d Ubuntu-20.04
wsl –setdefault Ubuntu-20.04
wsl –set-default-version 2

Ошибка Docker Repository Does Not Have a Release File при установке Докера

Инструкция на официальной странице приводит к упомянутой в теме ошибке.

Происходит это из-за разницы имен релизных веток.

Корректная пошаговая инструкция:

sudo apt-get remove docker docker-engine docker.io containerd runc

sudo apt-get update

sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common

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 \
xenial \
stable”

sudo apt-get update

sudo apt-get install docker-ce docker-ce-cli containerd.io

sudo docker run hello-world

 

Если после этого вы получили сообщение:

Hello from Docker!
This message shows that your installation appears to be working correctly.

Значит установка прошла успешно.

Scroll to top