update
This commit is contained in:
24
00_Install/README.md
Normal file
24
00_Install/README.md
Normal 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
|
||||
|
Reference in New Issue
Block a user