Mudanças entre as edições de "Docker"
De IFRS Campus Canoas
Linha 1: | Linha 1: | ||
− | ==Instalação no Ubuntu== | + | ==Instalação do Docker e Docker Compose no Ubuntu== |
$ sudo apt-get install \ | $ sudo apt-get install \ | ||
Linha 5: | Linha 5: | ||
ca-certificates \ | ca-certificates \ | ||
curl \ | curl \ | ||
− | software-properties-common | + | software-properties-common -y |
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | ||
Linha 21: | Linha 21: | ||
Update e instalação: | Update e instalação: | ||
− | $ sudo apt-get update && sudo apt-get install docker-ce | + | $ sudo apt-get update && sudo apt-get install docker-ce docker-compose -y |
== Teste == | == Teste == | ||
Linha 41: | Linha 41: | ||
$ sudo service docker restart | $ sudo service docker restart | ||
+ | |||
+ | |||
== Referência== | == Referência== | ||
https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/#install-using-the-repository | https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/#install-using-the-repository |
Edição das 08h49min de 8 de agosto de 2017
Instalação do Docker e Docker Compose no Ubuntu
$ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ software-properties-common -y
$ 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 docker-compose -y
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:
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