Last active
July 11, 2018 20:29
-
-
Save joshy91/9521c0e183a42e736320ed2f87f89da9 to your computer and use it in GitHub Desktop.
Install Docker.ce 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
#!/bin/bash | |
yum update | |
yum install docker | |
systemctl enable docker && systemctl start docker && systemctl status docker | |
#Replace *user* with actual user name | |
usermod -aG docker user | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment