- In the ssh terminal, enter the following command to install the yum-utils package:
sudo yum install -y yum-utils
The yum-utils package includes a handy utility for adding package repositories that you will use next.
- Enter the following to add the Docker CE package repositories to your system:
sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
- Enter the subsequent command to update the yum cache with the Docker repositories:
sudo yum makecache
- Enter the following to install Docker CE:
sudo yum -y install docker-ce libseccomp
- Enter the command below to start Docker as a service:
sudo systemctl start docker
- Verify Docker is running by entering:
sudo docker info
This will output system-wide information about Docker. The information will resemble the following:
alt
You can see some useful information, such as the number of containers, and the version of the Docker server. Docker adopts a client-server architecture, so the server doesn't have to be running on the same host as the client. In your case, you are using the Docker command line interface (CLI) client to connect to the server, called the Docker daemon.
Top comments (5)
If I want to install on Linux Mint, just instead of "yum" , I need to use "apt" because is debian based. DId you try it in Linux Mint these steps?
To install docker with apt, this is how I do it:
So of the commands might need to use sudo. I can't remember which ones do.
Thanks, I will try and test it which one might need to use sudo, probably then write article step by step. Thanks Jimmy.
No! I didn't try it yet brother!
Ok, thanks. I will try it and test to be sure is it the same or different. :)