Install Docker on Centos7 (2020 latest version available, just copy and paste)

Install Docker on Centos7 (2020 latest version available, just copy and paste)

Refer to the official documentation here for operation:

https://docs.docker.com/engine/install/centos/

1. Uninstall the old version of docker (my centos7 is new, so no packages will be deleted after running)

yum remove docker \
     docker-client \
     docker-client-latest \
     docker-common \
     docker-latest \
     docker-latest-logrotate \
     docker-logrotate \
     docker-engine 

insert image description here

2. Install the yum-utils package

yum install -y yum-utils 

insert image description here

3. Set up the Docker repository (Alibaba Cloud address is used here)

yum-config-manager \
 --add-repo \
 http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 

insert image description here

4. Update the yum package index

yum makecache fast 

Bold style

5. Install the latest version of Docker

yum install docker-ce docker-ce-cli containerd.io

In the following step, select y

insert image description here

Then the following situation will appear: (The official website has given us a hint) Fingerprint matching select y

insert image description here

insert image description here

insert image description here

6. Start Docker

systemctl start docker

7. Check the docker version

docker version 

insert image description here

8. Test run

docker run hello-world 

insert image description here

The Hello from Docker message appears, indicating that the test is successful.

This is the end of this article about installing Docker on Centos7 (the latest 2020 test is available, just copy and paste). For more information about installing Docker on Centos7, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed steps to install Docker on CentOS7
  • How to install Docker on CentOS
  • Install Docker on CentOS 7
  • Detailed tutorial on installing Docker on CentOS 8
  • Detailed tutorial on installing Docker on CentOS 8.4
  • The most detailed method to install docker on CentOS 8
  • About the problem of offline installation of Docker package on CentOS 8.4
  • How to install Docker using scripts under Linux Centos
  • Detailed explanation of configuring Docker's yum source and installing it in CentOS7
  • Detailed tutorial on installing Docker on CentOS 7.5
  • Install a specific version of Docker for CentOS

<<:  CSS example code for setting scroll bar style

>>:  Vue sample code for online preview of office files

Recommend

What is BFC? How to clear floats using CSS pseudo elements

BFC Concept: The block formatting context is an i...

Vue uses OSS to upload pictures or attachments

Use OSS to upload pictures or attachments in vue ...

Detailed explanation of the JavaScript timer principle

Table of contents 1. setTimeout() timer 2. Stop t...

Solution to MySQL unable to read table error (MySQL 1018 error)

1. Error reproduction I can access the MySQL data...

How to implement controllable dotted line with CSS

Preface Using css to generate dotted lines is a p...

Basic usage of exists, in and any in MySQL

【1】exists Use a loop to query the external table ...

WeChat applet records user movement trajectory

Table of contents Add Configuration json configur...

MySQL permission control details analysis

Table of contents 1. Global level 2. Database lev...

About the correct way to convert time in js when importing excel

Table of contents 1. Basics 2. Problem Descriptio...

Sharing some wonderful uses of wxs files in WeChat applet

Table of contents Preface application Filters Dra...

abbr mark and acronym mark

The <abbr> and <acronym> tags represen...