Created
April 2, 2025 07:43
-
-
Save dogukancagatay/a635add58b3d896b440441ef131feb6f to your computer and use it in GitHub Desktop.
Quick copy-paste to install docker engine on Fedora
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
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