Skip to content

Instantly share code, notes, and snippets.

@dogukancagatay
Created April 2, 2025 07:43
Show Gist options
  • Save dogukancagatay/a635add58b3d896b440441ef131feb6f to your computer and use it in GitHub Desktop.
Save dogukancagatay/a635add58b3d896b440441ef131feb6f to your computer and use it in GitHub Desktop.
Quick copy-paste to install docker engine on Fedora
sudo dnf install -y dnf-plugins-core
sudo dnf-3 config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo
sudo dnf install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
sudo systemctl enable --now docker
sudo docker run hello-world
sudo usermod -aG docker $USER
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment