Created
August 27, 2023 17:24
-
-
Save giovannicandido/fbc6733d255e20b08964c09928102922 to your computer and use it in GitHub Desktop.
Install docker on oracle linux 8
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 dnf install -y dnf-utils zip unzip | |
sudo dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo | |
sudo dnf remove -y runc | |
sudo dnf install -y docker-ce --nobest | |
sudo systemctl enable docker.service --now | |
sudo usermod opc -aG docker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment