Created
September 27, 2016 14:50
-
-
Save OtavioBraga/39ef6d9c5cb9c48c1bea62c870a991b4 to your computer and use it in GitHub Desktop.
Debian jessie initial configs for using docker-compose
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
ssh get-them-all | |
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 debian-jessie main" > /etc/apt/sources.list.d/docker.list | |
apt-get update | |
sudo apt-get install -y docker-engine | |
sudo service docker start | |
apt-get install python-dev | |
apt-get install -y python-pip | |
pip install docker-compose |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment