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.
Related Tutorials
Creating a VPS from VPSServer.comUse CentOS ISO VPS image to build a local yum repository
Installing and Configuring Wordpress on an CentOS 7 64bit Server
Install Percona Server 5.7 MySQL on Ubuntu, CentOS or Debian
Locating files on your Linux VPS system using whereis, which, whatis, readlink, find
comments (1)
nelufines
- 5 years agonice