Skip to content

Instantly share code, notes, and snippets.

View toddboyd's full-sized avatar

Todd Boyd toddboyd

View GitHub Profile
@toddboyd
toddboyd / install-docker.sh
Created November 30, 2018 22:44
Shell script to install latest docker-ce
apt-get update
apt-get -y install apt-transport-https \
ca-certificates \
curl \
gnupg2 \
software-properties-common
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg > /tmp/dkey
apt-key add /tmp/dkey