Last active
February 12, 2017 14:23
-
-
Save talbergs/33a120b01a06892b7f8962d0e4c00d3c to your computer and use it in GitHub Desktop.
oneliner.sh
This file contains 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
sudo apt-get update | |
sudo apt-get -y --no-install-recommends install curl apt-transport-https ca-certificates curl software-properties-common | |
curl -fsSL https://apt.dockerproject.org/gpg | sudo apt-key add - | |
apt-key fingerprint 58118E89F3A912897C070ADBF76221572C52609D | grep iud | |
sudo add-apt-repository "deb https://apt.dockerproject.org/repo/ ubuntu-$(lsb_release -cs) main" | |
sudo apt-get update | |
sudo apt-get -y install make docker-engine | |
sudo docker run hello-world |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment