This commit is contained in:
2024-04-01 10:35:59 +02:00
parent d27af65678
commit 4626df312b
2 changed files with 24 additions and 16 deletions

24
Install/README.md Normal file
View File

@ -0,0 +1,24 @@
# Installation Docker et Docker Compose
apt update
apt -y install apt-transport-https ca-certificates curl gnupg2 software-properties-common
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/trusted.gpg.d/docker-archive-keyring.gpg
add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/debian \
$(lsb_release -cs) \
stable"
apt update
apt install docker-ce docker-ce-cli containerd.io docker-compose-plugin -y
systemctl enable --now docker
usermod -aG docker $USER
newgrp docker