• Docker安装入门教程


    前言

    Docker是一个开源的容器引擎,它可以帮助我们更快地交付应用。Docker可将应用程序和基础设施层隔离,并且能将基础设施当作程序一样进行管理。使用Docker,可更快地打包、测试以及部署应用程序,并可减少从编写到部署运行代码的周期。

    Docker官方网站

    Docker GitHub

    安装

    Docker支持CentOS 7及之后版本的 64 位版本。

    查看Linux系统版本的命令

    方式一

    [root@iZhp33j6fklnmhbf0lz2obZ ~]# lsb_release -a
    LSB Version:	:core-4.1-amd64:core-4.1-noarch
    Distributor ID:	CentOS
    Description:	CentOS Linux release 8.2.2004 (Core) 
    Release:	8.2.2004
    Codename:	Core
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    方式二

    [root@iZhp33j6fklnmhbf0lz2obZ ~]# cat /etc/redhat-release
    CentOS Linux release 8.2.2004 (Core) 
    
    
    • 1
    • 2
    • 3

    使用官方安装脚本自动安装

    安装命令如下:

    curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
    
    • 1

    也可以使用国内 daocloud 一键安装命令:

    curl -sSL https://get.daocloud.io/docker | sh
    
    • 1

    手动安装

    在新主机上首次安装 Docker Engine-Community 之前,需要设置 Docker 仓库。之后,您可以从仓库安装和更新 Docker。

    安装软件包

    yum-utils 提供了 yum-config-manager ,并且 device mapper 存储驱动程序需要 device-mapper-persistent-data 和 lvm2。

    sudo yum install -y yum-utils device-mapper-persistent-data lvm2
    
    • 1

    设置仓库

    使用以下命令来设置稳定的仓库。

    使用官方源地址(比较慢)

    sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
    
    • 1

    国内源地址:
    阿里云

    sudo yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
    
    • 1

    清华大学源

    sudo yum-config-manager --add-repo https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/centos/docker-ce.repo
    
    • 1

    安装 Docker Engine-Community

    安装最新版本的 Docker Engine-Community 和 containerd,或者转到下一步安装特定版本:

    sudo yum install docker-ce docker-ce-cli containerd.io
    
    • 1

    如果提示您接受 GPG 密钥,请选是。

    Docker 安装完默认未启动。并且已经创建好 docker 用户组,但该用户组下没有用户。

    安装特定版本的 Docker Engine-Community

    要安装特定版本的 Docker Engine-Community,请在存储库中列出可用版本,然后选择并安装:

    查看可用版本

    列出并排序您存储库中可用的版本。此示例按版本号(从高到低)对结果进行排序。

    [root@iZhp33j6fklnmhbf0lz2obZ ~]# yum list docker-ce --showduplicates | sort -r
    Invalid configuration value: failovermethod=priority in /etc/yum.repos.d/CentOS-epel.repo; Configuration: OptionBinding with id "failovermethod" does not exist
    Last metadata expiration check: 1:00:23 ago on Thu 04 Aug 2022 04:56:07 PM CST.
    Installed Packages
    docker-ce.x86_64               3:20.10.9-3.el8                 docker-ce-stable 
    docker-ce.x86_64               3:20.10.8-3.el8                 docker-ce-stable 
    docker-ce.x86_64               3:20.10.7-3.el8                 docker-ce-stable 
    docker-ce.x86_64               3:20.10.6-3.el8                 docker-ce-stable 
    docker-ce.x86_64               3:20.10.5-3.el8                 docker-ce-stable 
    docker-ce.x86_64               3:20.10.4-3.el8                 docker-ce-stable 
    docker-ce.x86_64               3:20.10.3-3.el8                 docker-ce-stable 
    docker-ce.x86_64               3:20.10.2-3.el8                 docker-ce-stable 
    docker-ce.x86_64               3:20.10.17-3.el8                docker-ce-stable 
    docker-ce.x86_64               3:20.10.17-3.el8                @docker-ce-stable
    docker-ce.x86_64               3:20.10.16-3.el8                docker-ce-stable 
    docker-ce.x86_64               3:20.10.15-3.el8                docker-ce-stable 
    docker-ce.x86_64               3:20.10.14-3.el8                docker-ce-stable 
    docker-ce.x86_64               3:20.10.1-3.el8                 docker-ce-stable 
    docker-ce.x86_64               3:20.10.13-3.el8                docker-ce-stable 
    docker-ce.x86_64               3:20.10.12-3.el8                docker-ce-stable 
    docker-ce.x86_64               3:20.10.11-3.el8                docker-ce-stable 
    docker-ce.x86_64               3:20.10.10-3.el8                docker-ce-stable 
    docker-ce.x86_64               3:20.10.0-3.el8                 docker-ce-stable 
    docker-ce.x86_64               3:19.03.15-3.el8                docker-ce-stable 
    docker-ce.x86_64               3:19.03.14-3.el8                docker-ce-stable 
    docker-ce.x86_64               3:19.03.13-3.el8                docker-ce-stable 
    Available Package
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27

    安装指定版本

    通过其完整的软件包名称安装特定版本,该软件包名称是软件包名称(docker-ce)加上版本字符串(第二列),从第一个冒号(:)一直到第一个连字符,并用连字符(-)分隔。例如:docker-ce-18.09.1。

    sudo yum install docker-ce- docker-ce-cli- containerd.io
    
    • 1

    版本查看

    [root@iZhp33j6fklnmhbf0lz2obZ ~]# docker version 
    Client: Docker Engine - Community
     Version:           20.10.17
     API version:       1.41
     Go version:        go1.17.11
     Git commit:        100c701
     Built:             Mon Jun  6 23:03:11 2022
     OS/Arch:           linux/amd64
     Context:           default
     Experimental:      true
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    启动

    启动 Docker。

    sudo systemctl start docker
    
    • 1

    $ sudo docker run hello-world

    卸载

    卸载旧版本

    较旧的 Docker 版本称为 docker 或 docker-engine 。如果已安装这些程序,请卸载它们以及相关的依赖项。

    sudo yum remove docker \
                    docker-client \
                    docker-client-latest \
                    docker-common \
                    docker-latest \
                    docker-latest-logrotate \
                    docker-logrotate \
                    docker-engine
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    删除安装包:

    yum remove docker-ce
    
    • 1

    删除镜像、容器、配置文件等内容

    rm -rf /var/lib/docker
    
    • 1

    在这里插入图片描述
    岁寒,然后知松柏之后凋也。

  • 相关阅读:
    面试题:浏览器HTTP概念及对前端的影响
    【人工智能】知识图谱
    k8s pod常用运维命令
    Java poi 后台导出Excel
    PyCharm中使用pyqt5的方法2-2
    数据结构入门(C语言版)图的概念和功能函数实现
    Maven下载+配置+idea配置
    SVC服务的发布
    【K&C-第3篇】转向几何设计
    Python教程之字典(Dictionary)操作详解
  • 原文地址:https://blog.csdn.net/qq_35764295/article/details/126162826