Last active
December 30, 2019 15:49
-
-
Save marrold/ed7bdad8f3f4a22990a8d34471222dc5 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
sudo apt update | |
sudo apt install -y apt-transport-https ca-certificates curl software-properties-common gnupg2 | |
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 update | |
sudo apt install docker-ce |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment