“Instale o mais recente docker no Ubuntu 20.04” Respostas de código

Instale o mais recente docker no Ubuntu 20.04

# Official Latest Docker Install
curl -fsSL https://get.docker.com -o get-docker.sh
# Run the file
sudo sh get-docker.sh
DazEB

Instale o Docker Ubuntu 20

apt-get update -y &&
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-get update &&
apt-get upgrade -y &&
apt-get install docker-ce docker-ce-cli containerd.io -y
Dangerous Dugong

Respostas semelhantes a “Instale o mais recente docker no Ubuntu 20.04”

Perguntas semelhantes a “Instale o mais recente docker no Ubuntu 20.04”

Mais respostas relacionadas para “Instale o mais recente docker no Ubuntu 20.04” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código