美文网首页
玩转Docker(2)-Docker安装

玩转Docker(2)-Docker安装

作者: redher | 来源:发表于2020-02-23 09:39 被阅读0次

    docker版本

    Docker分为CE和EE两大版本。CE即社区版(免费,支持周期为7个月),EE即企业版,强调安全,付费使用,支持周期24个月。我们通常使用Docker CE版本,其分为stable test和nightly三个更新频道,每六个月发布一个stable版本。

    • stable 提供最新的稳定版本
    • test 提供预发布的版本
    • nightly 提供下一个主要版本的最新工作进展

    安装Docker

    官方网站上有各个环境下的安装指南
    Docker支持x86_64、armhf、arm64等平台。目前我手头上刚好有一台树莓派3B+,是armhf平台产品,系统是基于debian的Buster开发的。这里我们根据官网上的debian arm架构的描述来进行安装。官方教程中提示对于Raspbian不支持使用存储库进行安装必须使用脚本安装。

    脚本安装Docker

    $ curl -fsSL https://get.docker.com -o get-docker.sh
    $ sudo sh get-docker.sh
    # $ sudo sh get-docker.sh -mirror Aliyun 
    # 在国内建议通过--mirror选项指定国内原
    

    执行这些命令后,脚本就会自动将一切准备工作做好,并且把Docker CE的稳定版安装到系统中。

    启动Docker CE

    sudo systemctl enable docker
    sudo systemctl start docker

    建立docker用户组

    默认情况下,docker命令会使用Unix socket与Docker引擎通讯,而只有root用户和docker组的用户才可以访问Docker引擎的Unix socket。处于安全考虑一般Linux系统上不会直接使用root用户,因此更好的方法就是将需要使用docker的用户加入docker用户组中。
    建立docker组:

    sudo groupadd docker
    将当前用户加入docker组:
    sudo usermod -aG docker pi

    退出当前终端并重新登录,就可以使用docker

    测试Docker是否安装正确

    docker run arm32v7/hello-world

    pi@raspberrypi:~ $ docker run arm32v7/hello-world
    Unable to find image 'arm32v7/hello-world:latest' locally
    latest: Pulling from arm32v7/hello-world
    4ee5c797bcd7: Pull complete 
    Digest: sha256:d32a4c07ce3055032a8d2d59f49ca55fafc54a4e840483b590f7565769dc7e00
    Status: Downloaded newer image for arm32v7/hello-world:latest
    
    Hello from Docker!
    This message shows that your installation appears to be working correctly.
    
    To generate this message, Docker took the following steps:
     1. The Docker client contacted the Docker daemon.
     2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
        (arm32v7)
     3. The Docker daemon created a new container from that image which runs the
        executable that produces the output you are currently reading.
     4. The Docker daemon streamed that output to the Docker client, which sent it
        to your terminal.
    
    To try something more ambitious, you can run an Ubuntu container with:
     $ docker run -it ubuntu bash
    
    Share images, automate workflows, and more with a free Docker ID:
     https://hub.docker.com/
    
    For more examples and ideas, visit:
     https://docs.docker.com/get-started/
    

    若能正常输出以上信息,则说明安装成功。
    需要注意的是:ARM平台并不能使用x86镜像,并且ARM也分为ARM和ARM64,对于树莓派3B+来说只能使用ARM这个32位的镜像。

    相关文章

      网友评论

          本文标题:玩转Docker(2)-Docker安装

          本文链接:https://www.haomeiwen.com/subject/gwkhqhtx.html