Install Docker on Linux (very simple installation method)

Install Docker on Linux (very simple installation method)

I have been quite free recently. I have been doing internship for a few months as a senior in college. As an intern, I was asked to study Docker. Shame!

The three core concepts of Docker: images, containers, and warehouses

Image: Similar to the image of a virtual machine, in layman's terms, it is an installation file.

Container: Similar to a lightweight sandbox, a container is an application running instance created from an image. It can be started, started, stopped, and deleted, and these containers are isolated and invisible to each other.

Warehouse: Similar to a code warehouse, it is a place where Docker stores image files.

Let’s briefly introduce how to install Docker on CentOS.

Prerequisites:

  • 64-bit systems
  • kernel 3.10+

1. Check the kernel version. The returned value should be greater than 3.10.

$ uname -r 

2. Log in to the terminal using sudo or a user with root privileges.

3. Make sure yum is up to date

$ yum update

4. Add yum repository

tee /etc/yum.repos.d/docker.repo <<-'EOF'
[dockerrepo]
name=Docker Repository
baseurl=https://yum.dockerproject.org/repo/main/centos/$releasever/
enabled=1
gpgcheck=1
gpgkey=https://yum.dockerproject.org/gpg
EOF 

5. Install Docker

$ yum install -y docker-engine

After successful installation, use the docker version command to check whether the installation is successful. After successful installation------as shown below

6. Start Docker

$ systemctl start docker.service

7. Verify whether the installation is successful (the presence of client and service parts indicates that the docker installation and startup are successful)

Use the docker version command to view

8. Set the startup to start automatically

$ sudo systemctl enable docker

So far, Docker is fully installed.

If there are any shortcomings, fellow Taoists are welcome to point them out.

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:
  • How to deploy redis in linux environment and install it in docker
  • The process of installing Docker offline on Linux (one-click installation)
  • How to install docker on Linux system and log in to docker container through ssh
  • Detailed explanation of how to install Docker CE from a package under Linux
  • How to install and use Docker on Linux
  • Docker installation and usage tutorial under Linux
  • Installation tutorial of docker in linux

<<:  JavaScript design pattern learning adapter pattern

>>:  Detailed explanation of the use of the MySQL parameter sql_safe_updates in the production environment

Recommend

Example of how to install kong gateway in docker

1. Create a Docker network docker network create ...

HTML code example: detailed explanation of hyperlinks

Hyperlinks are the most frequently used HTML elem...

Detailed explanation of Vuex overall case

Table of contents 1. Introduction 2. Advantages 3...

Things about installing Homebrew on Mac

Recently, Xiao Ming just bought a new Mac and wan...

Summary of pitfalls of using nginx as a reverse proxy for grpc

background As we all know, nginx is a high-perfor...

How to manually scroll logs in Linux system

Log rotation is a very common function on Linux s...

Mysql date formatting and complex date range query

Table of contents Preface Query usage scenario ca...

Rhit efficient visualization Nginx log viewing tool

Table of contents Introduction Install Display Fi...

Example of how to change the domestic source in Ubuntu 18.04

Ubuntu's own source is from China, so the dow...

Practice of using SuperMap in Vue

Table of contents Preface Related Materials Vue p...

Solution to IDEA not being able to connect to MySQL port number occupation

I can log in to MYSQL normally under the command ...

Introduction to the functions and usage of value and name attributes in Html

1. The value used in the button refers to the text...