Delete 'install docker ubuntu'

This commit is contained in:
Adolfo Delorenzo 2021-03-29 07:43:20 +02:00
parent 3da57e8ca9
commit aea8c94353

View File

@ -1,16 +0,0 @@
apt-get remove docker docker-engine docker.io containerd runc
apt-get -y install \
apt-transport-https \
ca-certificates \
curl \
gnupg \
lsb-release
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo \
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
apt update && apt-get install docker-ce docker-ce-cli containerd.io -y