CentOS7 deploys version 19 of docker (simple, you can follow it)

CentOS7 deploys version 19 of docker (simple, you can follow it)

1. Install dependency packages

[root@localhost ~]# yum install -y yum-utils device-mapper-persistent-data lvm2

2. Set up the Alibaba Cloud image source

[root@localhost ~]# yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

3. Install Docker-CE

[root@localhost ~]# yum install -y docker-ce

4. Turn off firewall and enhanced security features

[root@localhost ~]# systemctl stop firewalld.service
[root@localhost ~]# setenforce 0
[root@localhost ~]#

5. Enable the service and set it to start automatically at boot

[root@localhost ~]# systemctl start docker.service
[root@localhost ~]# systemctl enable docker.service
Created symlink from /etc/systemd/system/multi-user.target.wants/docker.service to /usr/lib/systemd/system/docker.service.
[root@localhost ~]#

6. Set up Alibaba Cloud image acceleration

(1) Go to the Alibaba Cloud homepage and select Login. If you don’t have an account, you can register one.

(2) After successful login, select the console

(3) Select products and services, then select container image service

(4) Select the mirror accelerator at the bottom. At this time, you can provide the corresponding accelerator address according to your system. Everyone has their own accelerator address.

(5) Configuring image acceleration

[root@localhost ~]# cd /etc/docker/ ##If this directory does not exist, you need to create it manually [root@localhost docker]# ls
key.json
[root@localhost docker]# tee /etc/docker/daemon.json <<-'EOF' ##Configure image acceleration> {
> "registry-mirrors": ["https://******.******.aliyuncs.com"]
> }
> EOF
{
 "registry-mirrors": ["https://******.*******.aliyuncs.com"]
}
[root@localhost docker]# ls
daemon.json key.json
[root@localhost docker]# systemctl daemon-reload ##Reload the daemon process [root@localhost docker]# systemctl restart docker ##Restart docker
[root@localhost docker]#

7. Enable the system's packet forwarding function

[root@localhost docker]# echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf
[root@localhost docker]# sysctl -p ##Load configuration net.ipv4.ip_forward = 1
[root@localhost docker]#

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Implementation of Centos7+Docker+Jenkins+ASP.NET Core 2.0 automated release and deployment
  • Detailed explanation of CentOS7 Docker Nginx deployment and operation
  • Docker Practice - Detailed Explanation of Deploying Kubernetes on CentOS7
  • Docker installation and deployment on CentOS7 system and basic tutorial

<<:  WeChat applet implements simple calculator function

>>:  Will this SQL writing method really cause the index to fail?

Recommend

Windows platform configuration 5.7 version + MySQL database service

Includes the process of initializing the root use...

Detailed explanation of Vue's list rendering

Table of contents 1. v-for: traverse array conten...

How to install Docker on Windows 10 Home Edition

I recently used Docker to upgrade a project. I ha...

Detailed explanation of the JavaScript timer principle

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

Pure CSS to modify the browser scrollbar style example

Use CSS to modify the browser scroll bar style ::...

How to use CSS to achieve two columns fixed in the middle and adaptive

1. Use absolute positioning and margin The princi...

Detailed tutorial for installing MySQL 8.0.11 compressed version under win10

After reinstalling my computer recently, I downlo...

Implementation of tomcat image created with dockerfile based on alpine

1. Download the alpine image [root@docker43 ~]# d...

Example of Vue implementing fixed bottom component

Table of contents 【Effect】 【Implementation method...

Distributed monitoring system Zabbix uses SNMP and JMX channels to collect data

In the previous article, we learned about the pas...

Mysql sql slow query monitoring script code example

1. Modify my.cnf #The overall effect is that both...

Bootstrap 3.0 study notes grid system principle

Through the brief introduction in the previous tw...

React Synthetic Events Explained

Table of contents Start by clicking the input box...

Solve the problem of secure_file_priv null

Add secure_file_priv = ' '; then run cmd ...

css add scroll to div and hide the scroll bar

CSS adds scrolling to div and hides the scroll ba...