Install using the apt repository
Before you install Docker Engine for the first time on a new host machine, you need to set up the Docker apt repository. Afterward, you can install and update Docker from the repository.
Set up Docker's
aptrepository.
# Add Docker's official GPG key:
sudo apt update
sudo apt install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
# Add the repository to Apt sources:
sudo tee /etc/apt/sources.list.d/docker.sources <<EOF
Types: deb
URIs: https://download.docker.com/linux/ubuntu
Suites: $(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}")
Components: stable
Architectures: $(dpkg --print-architecture)
Signed-By: /etc/apt/keyrings/docker.asc
EOF
sudo docker run hello-world
sudo apt update
sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
sudo systemctl status docker
sudo systemctl start docker
sudo docker run hello-world
Deployment
docker volume create portainer_dataHow do I retrieve my token?
Formation Docker (Tutoriel)
DOCKER CLI
Ajouter l'utilisateur au groupe docker
Par défaut, seul root peut utiliser Docker. Ajoutez votre utilisateur au groupe docker :
# Activer le démarrage au bootsudo systemctl enable docker.servicesudo systemctl enable containerd.service
# Vérifier le statutsudo systemctl status docker
# Version client et serveurdocker version
# Informations système détailléesdocker info
# Test fonctionnel completdocker run hello-world
No comments:
Post a Comment