Skip to content

Instantly share code, notes, and snippets.

@maraisr
Forked from opunbuds/install_docker_centos.sh
Created September 1, 2017 01:03
Show Gist options
  • Save maraisr/13d2d6666fc55d0812312eaf70a80780 to your computer and use it in GitHub Desktop.
Save maraisr/13d2d6666fc55d0812312eaf70a80780 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