Skip to content

Instantly share code, notes, and snippets.

@kevinlincg
Created September 7, 2017 04:34
Show Gist options
  • Save kevinlincg/9781380af418e6b8ee90ed00ac1b2357 to your computer and use it in GitHub Desktop.
Save kevinlincg/9781380af418e6b8ee90ed00ac1b2357 to your computer and use it in GitHub Desktop.
#!/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