Docker: mudanças entre as edições

De Wiki Projeto Root
Ir para navegação Ir para pesquisar
Linha 4: Linha 4:


Site Oficial: https://www.docker.com/
Site Oficial: https://www.docker.com/
Comunidade: https://www.docker.com/docker-community
Comunidade: https://www.docker.com/docker-community



Edição das 18h37min de 22 de janeiro de 2020

Sobre

Olá! Visitante, reunimos aqui, informações sobre a ferramenta Docker.

Site Oficial: https://www.docker.com/


Comunidade: https://www.docker.com/docker-community

Instalação

  • Instalando dependências
 apt-get install -y apt-transport-https ca-certificates curl gnupg2 software-properties-common dirmngr
  • Adicionando chaves GPG Docker
 curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - apt-key fingerprint 0EBFCD88
  • Adicionando os repositórios do Docker
 add-apt-repository \
 "deb [arch=amd64] https://download.docker.com/linux/debian \
 $(lsb_release -cs) \
 stable"
  • Instalando o Docker
 apt-get update && apt-get upgrade && apt-get install docker-ce docker-ce-cli containerd.io

ou

 curl -fsSL https://get.docker.com -o get-docker.sh && sh get-docker.sh