Skip to content

Instantly share code, notes, and snippets.

@marviorocha
Created January 1, 2023 19:18
Show Gist options
  • Save marviorocha/aa8c8fb7479445845d79a96ca571fe30 to your computer and use it in GitHub Desktop.
Save marviorocha/aa8c8fb7479445845d79a96ca571fe30 to your computer and use it in GitHub Desktop.
# 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
@marviorocha
Copy link
Author

Only docker install

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment