Skip to content

Instantly share code, notes, and snippets.

View jaelliot's full-sized avatar
🏠
Working from home

Jay-Alexander Elliot jaelliot

🏠
Working from home
View GitHub Profile
@jaelliot
jaelliot / install_docker.sh
Created May 25, 2017 19:46 — forked from dpp/install_docker.sh
A script to install Docker on a minimal Ubuntu 16.04 machine
#!/bin/bash
apt-get update
apt-get install -y apt-transport-https ca-certificates
apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
echo 'deb https://apt.dockerproject.org/repo ubuntu-xenial main' > /etc/apt/sources.list.d/docker.list
apt-get update