Skip to content

Instantly share code, notes, and snippets.

@igponce
Last active April 8, 2019 14:30
Show Gist options
  • Save igponce/29f41dce048ae1df583f87371ee7f845 to your computer and use it in GitHub Desktop.
Save igponce/29f41dce048ae1df583f87371ee7f845 to your computer and use it in GitHub Desktop.
Install Docker on Ubuntu
sudo apt-get update
sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get -y install docker-ce
# Starting up
test_result = "XX$(sudo docker run hello-world | grep Hello)"
if [ "XXX$test_result -eq "XXXHello from Docker!" ] ; then
echo "FAIL: result is -> $test_result"
else
echo "DOCKER INSTALLED OK"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment