Installer Docker sur une VM Freebox DELTA
Une video sur l’installation de Docker. Les commandes executées : 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/debian/gpg | sudo apt-key add – sudo add-apt-repository \ “deb [arch=arm64] https://download.docker.com/linux/debian…
Une video sur l’installation de Docker.
Les commandes executées :
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/debian/gpg | sudo apt-key add –
sudo add-apt-repository \
“deb [arch=arm64] https://download.docker.com/linux/debian \
$(lsb_release -cs) \
stable”
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io
apt-cache madison docker-ce
sudo apt-get install docker-ce=5:20.10.0~3-0~debian-buster docker-ce-cli=5:20.10.0~3-0~debian-buster containerd.io
sudo docker run hello-world
sudo groupadd docker
sudo usermod -aG docker $USER
newgrp docker
docker run hello-world