Last active
August 28, 2017 10:58
-
-
Save johanek/1d7951d9548cba96078a5e57fc23c227 to your computer and use it in GitHub Desktop.
Install docker + docker-compose on ubuntu
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-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | |
echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main" > /etc/apt/sources.list.d/docker.list | |
apt-get update | |
apt-get install -y docker-engine python-pip | |
pip install docker-compose |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
curl https://gist.githubusercontent.com/johanek/1d7951d9548cba96078a5e57fc23c227/raw/b7af1bdc4f8899f989ec357a14f17ea6dfd45655/gistfile1.txt | sudo sh