Bootstrap

docker在线安装

1、查Linux系统版本

[root@localhost minner]# cat /etc/redhat-release
CentOS Linux release 7.9.2009 (Core)

root@yzlhserver2:~# cat /etc/issue
Ubuntu 20.04.6 LTS \n \l

2、docker在线安装

Step 1: 下载Docker

CentOS安装curl命令: yum install curl

Ubuntu安装命令:

$ sudo apt update
$ sudo apt install curl


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


Step 2: 安装Docker

$ sudo sh get-docker.sh

Step 3: 启动Docker服务

$ sudo systemctl enable docker
$ sudo systemctl start docker

Step 4: 查看Docker版本

$ docker version

代码解释:

-"sudo apt update":更新系统软件包列表
-"sudo apt install curl":安装curl命令行工具
-"curl -fsSL https://get.docker.com -o get-docker.sh":从docker官网下载脚本
-"sudo sh get-docker.sh":执行下载的脚本进行安装
-"sudo systemctl enable docker":在系统启动时自动启动docker服务
-"sudo systemctl start docker":启动docker服务
-"docker version":查看 docker版本

悦读

道可道,非常道;名可名,非常名。 无名,天地之始,有名,万物之母。 故常无欲,以观其妙,常有欲,以观其徼。 此两者,同出而异名,同谓之玄,玄之又玄,众妙之门。

;