Installation de Docker

23 Décembre 2020


Installation sous Ubuntu avec Vagrant

Voir ici


Installation sous Debian

// 1 - Effacer toutes installations précédentes

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

// 2 - Faire la configuration de apt-get pour permettre l'ajout d'un nouvelle source via HTTPs

$ sudo apt-get update

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

// 3 - Obtenir le certificat d'authenticité de docker.
$ curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -

// 4 - Valider la clé (Note: peut varier dans le temps)
$ sudo apt-key fingerprint 0EBFCD88

Ce qui produit: pub 4096R/0EBFCD88 2017-02-22 Key fingerprint = 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88 uid Docker Release (CE deb) <docker@docker.com> sub 4096R/F273FCD8 2017-02-22 

// 5 - Ajouter à la BD de apt-get, la librairie d'installation de Docker:
$ sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/debian \ $(lsb_release -cs) \ stable" 

// 6 - Procéder à l'installation de Docker: 
$ sudo apt-get update $ sudo apt-get install docker-ce docker-ce-cli containerd.io 

// 7 - tester Docker 
$ docker --version $ docker

Installation sous Ubuntu

Instruction

Installation sous CentOS

Instruction

Installation sous Windows

Instruction Note: Si Docker-Desktop démarre de façon infinie alors il faudra peut-être installer (m-a-j) wsl:
wsl --update

Installation sous MacOS

Instruction