Nettoyer l'installation de Windows C'est une bonne occasion de noter la procédure d'installation de VSCode avec Docker sur Ubuntu sur WSL sans Docker Desktop sous Windows. Je ne sais pas si c'est heureux
Administrateur PowerShell
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
```powershell
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
Redémarrez Windows
Administrateur PowerShell
wsl --set-default-version 2
## Installez Ubuntu 18.04 LTS
1. Obtenez, installez et lancez depuis [Microsoft Store](https://www.microsoft.com/store/apps/9N9TNGVNDL3Q)
## Installer Docker
1. Install using the repository
* [Informations principales](https://docs.docker.com/engine/install/ubuntu/)
```bash
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 \
$(lsb_release -cs) \
stable"
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io
sudo groupadd docker
```bash
sudo usermod -aG docker $USER
newgrp docker
sudo vi /etc/docker/daemon.json
#### **`/etc/docker/daemon.json`**
```vim
{
"hosts": ["unix:///var/run/docker.sock", "tcp://127.0.0.1:2375"]
}
sudo service docker restart
$ docker --version
Docker version 19.03.13, build 4484c46d9d
$ sudo netstat -lntp | grep dockerd
tcp 0 0 127.0.0.1:2375 0.0.0.0:* LISTEN 3973/dockerd
c'est tout
Recommended Posts