Skip to content

Instantly share code, notes, and snippets.

@LaurentDumont
Last active December 28, 2018 20:25
Show Gist options
  • Save LaurentDumont/e5d9f6f9cd5d26271033510606f4e4a3 to your computer and use it in GitHub Desktop.
Save LaurentDumont/e5d9f6f9cd5d26271033510606f4e4a3 to your computer and use it in GitHub Desktop.
Shell script - Install Docker
#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