RHEL/CentOS 8 docker-ce installation Error: package docker-ce-3:19.03.8-3.el7.x86_64 requires containerd.io >= 1.2.2-3
If you are facing the error while installing docker-ce as follow:
To fix it, you can either install a specific stable version like:
To fix it, you can either install a specific stable version like:
$ sudo dnf install docker-ce-3:18.09.1-3.el7
OR
you can force the installation of docker-ce with the --nobest option
$ sudo dnf install --nobest docker-ce
OR
Install the latest available containerd.io package manually
$ sudo dnf install
https://download.docker.com/linux/centos/7/x86_64/stable/Packages/containerd.io-1.2.6-3.3.el7.x86_64.rpm
After the package is installed, we can simply install the latest docker-ce
$ sudo dnf install docker-ce
This option is less convenient since the containerd.io
package is not installed
as a dependency of docker-ce
, therefore it will not be removed automatically when
the latter is uninstalled from the system.
I hope it will fix your issue!!
Thanks!!!!!!! Enjoy Programming :)
Reference Links
===================================
https://linuxconfig.org/how-to-install-docker-in-rhel-8
Comments
Post a Comment
Thanks for your valuable comments.