Created
June 4, 2019 19:15
-
-
Save hakuno/82118c4a1742f3608bd74bc38cba4268 to your computer and use it in GitHub Desktop.
Docker Test
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
It's useful whenever your lastest version of Fedora has no Docker on its repository. | |
For instance, Fedora 30 had no Docker (stable) available when released. | |
Then, you can go with the test version. | |
Prepare | |
sudo dnf -y update | |
sudo dnf -y install dnf-plugins-core | |
sudo dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo | |
sudo dnf config-manager --set-enabled docker-ce-test | |
sudo dnf config-manager --set-disabled docker-ce-stable | |
Finally | |
sudo dnf -y update | |
sudo dnf install --releasever=29 containerd.io | |
sudo dnf install docker-ce docker-ce-cli |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment