Skip to content

Instantly share code, notes, and snippets.

View jadedgeek's full-sized avatar

Ramene Anthony jadedgeek

View GitHub Profile

Keybase proof

I hereby claim:

  • I am jadedgeek on github.
  • I am jadedgeek (https://keybase.io/jadedgeek) on keybase.
  • I have a public key whose fingerprint is 9AA1 4B28 0A06 9167 234B 66D4 F890 06C8 81DF E96B

To claim this, I am signing this object:

@jadedgeek
jadedgeek / install.sh
Created March 10, 2017 07:25 — forked from wdullaer/install.sh
Install Latest Docker and Docker-compose on Ubuntu
# Ask for the user password
# Script only works if sudo caches the password for a few minutes
sudo true
# Install kernel extra's to enable docker aufs support
# sudo apt-get -y install linux-image-extra-$(uname -r)
# Add Docker PPA and install latest version
# sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
# sudo sh -c "echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list"
@jadedgeek
jadedgeek / provision.sh
Created March 10, 2017 07:23
Install Docker with Docker Compose on Ubuntu 14.04 Trusty
#!/bin/bash
# https://docs.docker.com/engine/installation/linux/ubuntulinux/
sudo apt-get update
sudo apt-get -y install apt-transport-https ca-certificates
sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
sudo bash -c 'echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main" > /etc/apt/sources.list.d/docker.list'
sudo apt-get update
sudo apt-get -y install linux-image-extra-$(uname -r)
sudo apt-get -y install docker-engine