Last active
August 29, 2015 14:06
-
-
Save technicool/27d1b26df20ec3545ddb to your computer and use it in GitHub Desktop.
Install the latest version of docker and fig on an ubuntu server
This file contains 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 | |
# Run this as root | |
sudo apt-get update | |
sudo apt-get install -y git curl vim python-pip | |
curl -sSL https://get.docker.io/ubuntu/ | sudo sh | |
sudo pip install -U fig==0.5.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment