How to install docker on centos

How to install docker on centos

Here we only introduce the relatively simple installation method:

1. Install using yum

It is best to update yum

sudo yum update

Direct installation

sudo yum install -y docker

This method is the simplest, but the version is older:

sudo docker version
Client:
 Version: 1.13.1
 API version: 1.26
 Package version: docker-1.13.1-75.git8633870.el7.centos.x86_64
 Go version: go1.9.4
 Git commit: 8633870/1.13.1
 Built: Fri Sep 28 19:45:08 2018
 OS/Arch: linux/amd64

Server:
 Version: 1.13.1
 API version: 1.26 (minimum version 1.12)
 Package version: docker-1.13.1-75.git8633870.el7.centos.x86_64
 Go version: go1.9.4
 Git commit: 8633870/1.13.1
 Built: Fri Sep 28 19:45:08 2018
 OS/Arch: linux/amd64
 Experimental: false

2. Install using script

Docker provides a script for us to install the latest version of Docker maintained by the Docker community:

curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh

The script will automatically obtain docker.repo and install it.

docker version
Client:
 Version: 18.06.1-ce
 API version: 1.38
 Go version: go1.10.3
 Git commit: e68fc7a
 Built: Tue Aug 21 17:23:03 2018
 OS/Arch: linux/amd64
 Experimental: false
Server:
 Engine:
 Version: 18.06.1-ce
 API version: 1.38 (minimum version 1.12)
 Go version: go1.10.3
 Git commit: e68fc7a
 Built: Tue Aug 21 17:25:29 2018
 OS/Arch: linux/amd64
 Experimental: false

Summarize

The above is the docker installation method under centos introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

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
  • Detailed installation tutorial of Docker under 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

<<:  What to do if you forget your password in MySQL 5.7.17

>>:  JavaScript typing game

Recommend

Summary of basic knowledge points of Linux group

1. Basic Introduction of Linux Group In Linux, ev...

Implementation of react loop data (list)

First, let's simulate the data coming from th...

Detailed steps to install Mysql5.7.19 using yum on Centos7

There is no mysql by default in the yum source of...

4 Practical Tips for Web Page Design

Related articles: 9 practical tips for creating we...

Detailed explanation of Vue filter implementation and application scenarios

1. Brief Introduction Vue.js allows you to define...

MySQL implements a solution similar to Oracle sequence

MySQL implements Oracle-like sequences Oracle gen...

View MySQL installation information under Linux server

View the installation information of mysql: #ps -...

This article will show you the principle of MySQL master-slave synchronization

Table of contents Brief Analysis of MySQL Master-...

Summary of javascript date tools

let Utils = { /** * Is it the year of death? * @r...

Summary of some common methods of JavaScript array

Table of contents 1. How to create an array in Ja...

KVM virtualization installation, deployment and management tutorial

Table of contents 1.kvm deployment 1.1 kvm instal...

Steps to configure IIS10 under Win10 and support debugging ASP programs

Microsoft IIS IIS (Internet Information Server) i...

Let’s take a look at JavaScript precompilation (summary)

JS running trilogy js running code is divided int...

Detailed explanation of three methods of JS interception string

JS provides three methods for intercepting string...