Last active
April 14, 2017 05:22
-
-
Save z3cka/97e4b268c41b406031069835a8f81dac to your computer and use it in GitHub Desktop.
do a $ wget -qO- https://gist.githubusercontent.com/z3cka/97e4b268c41b406031069835a8f81dac/raw/e636382cb40b8dc6e856e658d4dfa43982a9adc3/docker-install-deb8.sh | bash
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
sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common | |
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | |
sudo apt-get update | |
sudo apt-get install -y docker-ce |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment