Last active
November 1, 2016 05:55
-
-
Save igez/57d46011b4be0ea2e0814a9c0eeb3dd5 to your computer and use it in GitHub Desktop.
Install Docker & Docker Compose on Centos 7
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 | |
wget -qO- https://get.docker.com/ | sh | |
sudo usermod -aG docker $(whoami) | |
sudo systemctl enable docker.service | |
sudo systemctl start docker.service | |
sudo yum install -y epel-release | |
sudo yum install -y python-pip | |
sudo yum upgrade -y python* | |
sudo pip install docker-compose --force --upgrade |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment