Docker 安装(CentOS)

实验环境

  • 腾讯云轻量应用服务器
  • CentOS 7.6 64bit

安装说明

更新时间:2023.1.9

docker 官网
docker 官方文档

安装内容:Docker Engine

Docker Engine is an open source containerization technology for building and containerizing your applications. Docker Engine acts as a client-server application with:

  • A server with a long-running daemon process dockerd.
  • APIs which specify interfaces that programs can use to talk to and instruct the Docker daemon.
  • A command line interface (CLI) client docker.

The CLI uses Docker APIs to control or interact with the Docker daemon through scripting or direct CLI commands. Many other Docker applications use the underlying API and CLI. The daemon creates and manage Docker objects, such as images, containers, networks, and volumes.

声明:本文按照官方文档操作

安装步骤

前置准备

系统要求(CentOS):

  • 系统版本:CentOS 7、CentOS 8 (stream)、CentOS 9 (stream)
  • 存储库:启用 centos-extras(CentOS 默认启用)
  • 存储驱动:推荐使用 overlay2(默认)

卸载旧版本
docker 曾命名为 docker、docker-engine等,现在 Docker Engine 名为 docker-ce
安装前先卸载之前的版本和依赖,/var/lib/docker/ 目录下的镜像、容器等内容将会被保留

sudo yum remove docker \
                  docker-client \
                  docker-client-latest \
                  docker-common \
                  docker-latest \
                  docker-latest-logrotate \
                  docker-logrotate \
                  docker-engine

安装 Docker Engine

设置存储库

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

查看 docker-ce 版本

yum list docker-ce --showduplicates | sort -r

[root@localhost ~]# yum list docker-ce --showduplicates | sort -r
Loading mirror speeds from cached hostfile
Loaded plugins: fastestmirror, langpacks
Installed Packages
docker-ce.x86_64            3:20.10.9-3.el7                    docker-ce-stable 
docker-ce.x86_64            3:20.10.8-3.el7                    docker-ce-stable 
docker-ce.x86_64            3:20.10.7-3.el7                    docker-ce-stable

安装最新版 Docker Engine、CLI、Containerd、Docker Compose
GPG key 060A 61C5 1B55 8A7F 742B 77AA C52F EB6B 621E 9F35

sudo yum install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin

安装特定版本
<VERSION_STRING> 为从第一个冒号到第一个连字符之间的部分
示例:根据上面的查询结果,可安装版本有 docker-ce-20.10.9 docker-ce-20.10.8 docker-ce-20.10.7

sudo yum install -y docker-ce-<VERSION_STRING> docker-ce-cli-<VERSION_STRING> containerd.io docker-compose-plugin

提示:安装完成后会创建一个 docker 用户组

[root@localhost ~]# cat /etc/group | grep docker
docker:x:991:

配置和测试

使用腾讯云 Docker 镜像源加速镜像下载

mkdir -p /etc/docker
vim /etc/docker/daemon.json

写入以下内容

{
   "registry-mirrors": [
       "https://mirror.ccs.tencentyun.com"
  ]
}

设置开机启动

sudo systemctl enable docker.service
sudo systemctl enable containerd.service

启动 docker

sudo systemctl start docker

测试是否安装成功,运行 hello-world 镜像

sudo docker run hello-world

[root@localhost ~]# sudo docker run hello-world
...
Hello from Docker!
This message shows that your installation appears to be working correctly.
...

卸载 Docker Engine

卸载 Docker Engine、CLI、Containerd、Docker Compose

sudo yum remove docker-ce docker-ce-cli containerd.io docker-compose-plugin

删除映像、容器、卷

sudo rm -rf /var/lib/docker
sudo rm -rf /var/lib/containerd

常用命令

重新加载配置 systemctl daemon-reload
重启 docker systemctl restart docker
查看镜像 docker image ls
查看容器 docker ps

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

叶涟风不息

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值