Created
December 5, 2018 23:32
-
-
Save ssmythe/07ecb335710bab905c83f06174e88b0d to your computer and use it in GitHub Desktop.
Install docker on a Jenkins master on CentOS7
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
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