Last active
February 9, 2016 05:40
-
-
Save OmgImAlexis/1ddc692390cf0d5880c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt-get update | |
apt-get install apt-transport-https ca-certificates -y | |
apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | |
truncate -s0 /etc/apt/sources.list.d/docker.list | |
echo "deb https://apt.dockerproject.org/repo ubuntu-wily main" > /etc/apt/sources.list.d/docker.list | |
apt-get update | |
apt-get purge lxc-docker | |
apt-cache policy docker-engine | |
apt-get update | |
apt-get install linux-image-extra-$(uname -r) -y | |
apt-get update | |
apt-get install docker-engine -y | |
service docker start | |
curl -s https://shipyard-project.com/deploy | bash -s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment