Vous regardez une ancienne version de cette page. Revenir à la dernière version.
Aucune catégorie assignée
Docker install
-
- Dernière modification le il y a 2 années par Paf
-
Révision datée du 15 décembre 2022 à 19:55 par Paf (discussion | contributions)
apt-get update -y
apt-get install ca-certificates curl gnupg lsb-release -y
apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common -y
mkdir -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list
apt-get update -y
apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin -y