How can you install docker-ce without podman in rhel9
Aug 9, 2023
Here’s how:
First if you have already installed docker using yum install, remove it using yum rm docker
Then you have to set up yum utencils by: yum install yum-utils-y
Then run the following command
yum-config-manager\
--add repo\
https://download.docker.com/linux/centos/docker-ce.repo
now you can just do:
yum install docker-ce
your docker is now ready to use, to start, use:
systemctl start docker