Skip to content

Instantly share code, notes, and snippets.

@giovannicandido
Created August 27, 2023 17:24
Show Gist options
  • Save giovannicandido/fbc6733d255e20b08964c09928102922 to your computer and use it in GitHub Desktop.
Save giovannicandido/fbc6733d255e20b08964c09928102922 to your computer and use it in GitHub Desktop.
Install docker on oracle linux 8
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