Skip to content

Instantly share code, notes, and snippets.

@imesh
Created March 23, 2018 05:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imesh/0a5ef617104c138b0b79f14a0814f913 to your computer and use it in GitHub Desktop.
Save imesh/0a5ef617104c138b0b79f14a0814f913 to your computer and use it in GitHub Desktop.
#!/bin/bash
sudo su
apt update
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 -
add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/debian \
$(lsb_release -cs) \
stable"
apt 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