Last active
May 10, 2020 08:27
-
-
Save MaheshwarReddyGade/6c0bde80b157ec77e671d6804ae4cd67 to your computer and use it in GitHub Desktop.
install docker oel 7
This file contains 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
# as root user | |
cd /etc/yum.repos.d/ | |
wget http://yum.oracle.com/public-yum-ol7.repo | |
cat public-yum-ol7.repo | |
yum install docker-engine -y | |
systemctl start docker | |
systemctl enable docker | |
systemctl status docker | |
sudo usermod -a -G docker oracle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment