Skip to content

Instantly share code, notes, and snippets.

@igez
Last active November 1, 2016 05:55
Show Gist options
  • Save igez/57d46011b4be0ea2e0814a9c0eeb3dd5 to your computer and use it in GitHub Desktop.
Save igez/57d46011b4be0ea2e0814a9c0eeb3dd5 to your computer and use it in GitHub Desktop.
Install Docker & Docker Compose on Centos 7
#!/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