Installer Docker

Mis à jour le lundi 17 mai 2021 par johackim

Pour installer docker sur un serveur Linux (Ubuntu ou Debian), il suffit d'exécuter cette commande :

apt update && apt install -yq docker.io

Si vous êtes sur Arch Linux :

sudo pacman -S docker

Pour le configurer :

sudo systemctl enable --now docker
gpasswd -a <user> docker
newgrp docker

Il existe aussi une installation pour Windows et une installation pour Mac.