Created
September 9, 2019 10:33
-
-
Save wh13371/8fb904ee617c4dcfa356357c426e1354 to your computer and use it in GitHub Desktop.
install Docker on CentOS 7
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 | |
############################################################################### | |
# docker | |
############################################################################### | |
curl -kfsSL https://get.docker.com/ | sh | |
systemctl start docker | |
usermod -aG docker fizz | |
docker version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment