Last active
July 14, 2019 20:34
-
-
Save gabrielkirsten/91e19f650df59daeedbf51d9322bfd1c to your computer and use it in GitHub Desktop.
Script de instalação do Docker para Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################ | |
# Instalação do Docker no Ubuntu | |
################################ | |
# Verificar a versão do sistema | |
lsb_release -a | |
# Obter o script de isntação oficial do Docker | |
curl -fsSL https://get.docker.com -o get-docker.sh | |
# Executar o script de instalação | |
sudo sh get-docker.sh | |
# Checar a instalação | |
sudo docker version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment