Created
January 1, 2023 19:18
-
-
Save marviorocha/aa8c8fb7479445845d79a96ca571fe30 to your computer and use it in GitHub Desktop.
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
# update system | |
sudo dnf -y update | |
# dnf plugin core, docker etc... | |
sudo dnf -y install dnf-plugins-core | |
sudo dnf config-manager \ | |
--add-repo \ | |
https://download.docker.com/linux/fedora/docker-ce.repo | |
sudo dnf -y update | |
sudo dnf -y install docker-ce docker-ce-cli containerd.io docker-compose-plugin | |
sudo systemctl start docker | |
sudo groupadd docker | |
sudo usermod -aG docker $USER | |
sudo systemctl start docker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Only docker install