Created
January 12, 2018 18:58
-
-
Save dvir1994/2a9ad9bc21df75d31b8378c913c06238 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 | |
sudo yum install -y yum-utils | |
sudo yum-config-manager \ | |
--add-repo \ | |
https://download.docker.com/linux/centos/docker-ce.repo | |
sudo yum makecache fast | |
sudo yum -y install docker-ce | |
sudo systemctl start docker | |
sudo docker run hello-world |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment