Skip to content

Instantly share code, notes, and snippets.

@giovannicandido
Created July 25, 2023 18:34
Show Gist options
  • Save giovannicandido/c563d48b41fbec898ce4ef0a13a62e79 to your computer and use it in GitHub Desktop.
Save giovannicandido/c563d48b41fbec898ce4ef0a13a62e79 to your computer and use it in GitHub Desktop.
install docker in oracle linux 09
sudo yum install -y yum-utils
sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
sudo yum remove -y docker docker-* podman runc
sudo yum install -y docker-ce docker-ce-cli containerd.io
sudo systemctl start docker
sudo systemctl enable docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment