Last active
December 28, 2018 20:25
-
-
Save LaurentDumont/e5d9f6f9cd5d26271033510606f4e4a3 to your computer and use it in GitHub Desktop.
Shell script - Install Docker
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
#Install docker | |
#!/bin/bash | |
sudo apt-get install \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ | |
gnupg2 \ | |
software-properties-common -y | |
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 && apt-get install docker-ce -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment