Detailed installation tutorial of Docker under CentOS

Detailed installation tutorial of Docker under CentOS

Docker is divided into CE and EE. The CE version is the community edition (free); the EE version is the enterprise edition, which emphasizes security (paid). Docker CE releases an edge version every month and a stable version every three months. The version numbers of Docker EE and stable are consistent.

Docker CE supports the 64-bit version of CentOS 7 and requires a kernel version no less than 3.10. CentOS meets the minimum kernel requirements. If the kernel version is lower, some functions (such as the overlay2 storage layer driver) cannot be used, and some functions may be unstable.

There are three ways to install Docker CE: install through the Docker repository, download the installation package and install manually, and install automatically through a script.

  • Most users use the mirror source of the Docker repository for installation. This method is relatively simple to install and upgrade, and it is also the recommended method.
  • Some users manually install the software by downloading the installation package. This method is useful when you cannot connect to the Internet. You only need the installation package.
  • In development and testing environments, some users install through automatic scripts, which is also convenient, but not recommended in production environments. Because it may have the following risks: first, the script requires root privileges, so you need to check the script carefully before running it; second, the script will try to detect the version of your system and configure your package management system. In addition, the script does not allow you to customize any installation parameters. This may result in an unsupported configuration. Furthermore, the script will install dependent packages without confirmation, which may install a large number of packages, depending on your current host configuration; and this method cannot decide the version to download by yourself, it will only install the latest version.

Install using yum source

Official source

$ sudo yum-config-manager \
  --add-repo \
  https://download.docker.com/linux/centos/docker-ce.repo

Domestic Source

$ sudo yum-config-manager \
  --add-repo \
  https://mirrors.ustc.edu.cn/docker-ce/linux/centos/docker-ce.repo

Step 1: Choose one of the two sources above. Generally speaking, due to domestic network problems, domestic sources are usually chosen. But if you are installing Docker CE on your host for the first time, you need to set up the Docker repository first. After that, you can install and update Docker through this repository. Otherwise the following prompt will appear: sudo: yum-config-manager: 找不到命令.

The solution is to set up a repository and install the required package yum-utils . This package provides the functionality of yum-config-manager . Similarly, Docker CE's devicemapper storage driver also requires two other packages device-mapper-persistent-data and lvm2 . We install them together with the following command.

$ sudo yum install -y yum-utils \
 device-mapper-persistent-data \
 lvm2

Install Docker CE

$ sudo yum install docker-ce

During the installation process, you will be asked whether to continue, just enter y.

Automatic installation via script

In order to simplify the installation process in a test or development environment, Docker officially provides a set of convenient installation scripts, which can be used to install on CentOS systems.

$ curl -fsSL get.docker.com -o get-docker.sh
$ sudo sh get-docker.sh -mirror Aliyun

After executing the above command, the script will automatically prepare everything and install the edge version of Docker CE in the system.

Start Docker

The Docker installed in the first way above needs to be started manually, while the installation through the script will automatically start Docker. Starting Docker is also very simple, the following command $ sudo systemctl start docker .

References:

Get Docker CE for CentOS

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • 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
  • Install Docker on Centos7 (2020 latest version available, just copy and paste)
  • Detailed explanation of configuring Docker's yum source and installing it in CentOS7
  • Detailed tutorial on installing Docker on CentOS 7.5
  • How to install docker on centos
  • How to install docker on CentOS7
  • Tutorial on installing docker container under CentOS7.2
  • Detailed steps to install docker on centOS7
  • Detailed steps for installing docker on centos7
  • How to install Docker on CentOS

<<:  MySQL 5.7 JSON type usage details

>>:  Detailed explanation of MySQL precompilation function

Recommend

Complete code for implementing the vue backtop component

Effect: Code: <template> <div class=&quo...

Introduction to using Unicode characters in web pages (&#,\u, etc.)

The earliest computers could only use ASCII chara...

Detailed tutorial on compiling and installing python3.6 on linux

1. First go to the official website https://www.p...

Introduction to document.activeELement focus element in JavaScript

Table of contents 1. The default focus is on the ...

Detailed explanation of using INS and DEL to mark document changes

ins and del were introduced in HTML 4.0 to help au...

CentOS 7 cannot access the Internet after modifying the network card

Ping www.baidu.com unknown domain name Modify the...

Vue+element+oss realizes front-end fragment upload and breakpoint resume

Pure front-end implementation:切片上傳斷點續傳.斷點續傳needs ...

JavaScript object built-in objects, value types and reference types explained

Table of contents Object Object Definition Iterat...

Installing Windows Server 2008 operating system on a virtual machine

This article introduces the installation of Windo...

Use nginx to configure domain name-based virtual hosts

1. What is a virtual host? Virtual hosts use spec...

Several methods of calling js in a are sorted out and recommended for use

We often use click events in the a tag: 1. a href=...

Detailed explanation of Vue components

<body> <div id="root"> <...

The latest Linux installation process of tomcat8

Download https://tomcat.apache.org/download-80.cg...

Detailed explanation of the process of building an MQTT server using Docker

1. Pull the image docker pull registry.cn-hangzho...