Skip to content

Instantly share code, notes, and snippets.

@ssmythe
Created December 5, 2018 23:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssmythe/07ecb335710bab905c83f06174e88b0d to your computer and use it in GitHub Desktop.
Save ssmythe/07ecb335710bab905c83f06174e88b0d to your computer and use it in GitHub Desktop.
Install docker on a Jenkins master on CentOS7
sudo yum -y install docker
sudo systemctl start docker
sudo systemctl enable docker
sudo groupadd docker
sudo usermod -aG docker jenkins
sudo systemctl restart jenkins
sudo systemctl restart docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment