Mudanças entre as edições de "Docker"
De IFRS Campus Canoas
(→Teste) |
|||
Linha 24: | Linha 24: | ||
== Teste == | == Teste == | ||
− | $ docker run hello-world | + | $ sudo docker run hello-world |
Deve retornar algo como: | Deve retornar algo como: |
Edição das 13h45min de 7 de agosto de 2017
Instalação no Ubuntu
$ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ software-properties-common
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Adicionar o repositório:
$ sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable"
OU adicionar manualmente no arquirvo /etc/apt/source.list
deb [arch=amd64] https://download.docker.com/linux/ubuntu xenial stable
Update e instalação:
$ sudo apt-get update && sudo apt-get install docker-ce
Teste
$ sudo docker run hello-world
Deve retornar algo como:
Hello from Docker! This message shows that your installation appears to be working correctly. ........ ........
Em caso de falha, setar o DNS manualmente, seguir a configuração abaixo:
Configuração
Alterar DNS do Docker daemon no Ubuntu 16.04:
Criar ou editar o arquivo /etc/docker/daemon.json:
{ "dns": ["200.17.91.4", "200.17.88.3"] }
sudo service docker restart
Referência:
https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/#install-using-the-repository