码迷,mamicode.com
首页 > 其他好文 > 详细

Docker 安装使用

时间:2019-10-20 01:22:52      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:证明   install   经典的   包名   cat   curl   通过   url   string   

1.Ubuntu Docker 安装

  这里我用Xshell连接我的Ubuntu,在Ubuntu上操作一样

  技术图片 

  Docker 要求 Ubuntu 系统的内核版本高于 3.10 ,查看本页面的前提条件来验证你的 Ubuntu 版本是否支持 Docker。

  通过 uname -r 命令查看你当前的内核版本

  技术图片

2.使用脚本安装 Docker

    1、获取最新版本的 Docker 安装包

  原文链接:https://blog.csdn.net/bingzhongdehuoyan/article/details/79411479

  由于apt官方库里的docker版本可能比较旧,所以先卸载可能存在的旧版本:

  sudo apt-get remove docker docker-engine docker-ce docker.io

  更新apt包索引:

  sudo apt-get update

  安装以下包以使apt可以通过HTTPS使用存储库(repository):

  sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common

  添加Docker官方的GPG密钥:

  curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

  使用下面的命令来设置stable存储库:

  sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

  再更新一下apt包索引:

  sudo apt-get update

  安装最新版本的Docker CE:

  sudo apt-get install -y docker-ce

  列出可用的版本:

  apt-cache madison docker-ce

  技术图片

  选择要安装的特定版本,第二列是版本字符串,第三列是存储库名称,它指示包来自哪个存储库,以及扩展它的稳定性级别。要安装一个特定的版本,

  将版本字符串附加到包名中,并通过等号(=)分隔它们:

  sudo apt-get install docker-ce=<VERSION>

  验证docker

  查看docker服务是否启动:

  systemctl status docker

  若未启动,则启动docker服务:

  sudo systemctl start docker

  经典的hello world:

  sudo docker run hello-world

  技术图片

  有以上输出则证明docker已安装成功

 

Docker 安装使用

标签:证明   install   经典的   包名   cat   curl   通过   url   string   

原文地址:https://www.cnblogs.com/xingxingnbsp/p/11706320.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!