Installation of Docker on CentOS 8
Installation
Start by running CentOS updates
Yum update
- Confirm the download with â
Y
â. - Wait until the update is finished.
First we have to install the required packages
sudo yum install -y yum-utils device-mapper-persistent-data lvm2
Now we have to install the Docker repositorysudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
Now we are able to install Dockersudo yum install docker-ce docker-ce-cli containerd.io ânobest
Docker has been installed.
Starting Docker
sudo systemctl start docker
Check if Docker is workingsudo docker run hello-world
If you get the following message, your Docker installation is working:
Hello from Docker! This message shows that your installation appears to be working correctly.
comments (1)
nelufines
- 4 years agonice