Ubuntu 14安装docker

Ubuntu 14安装docker

    • 首先卸载旧版本docker
    • apt方式安装
    • docker-ce 安装
    • 脚本自动安装
    • 测试是否正确安装docker
    • 镜像加速

近期学习到docker,自己试着安装docker,多次均失败,最后成功了,记录下操作过程,希望能对有需要的人提供帮助。

首先卸载旧版本docker

命令如下:

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

apt方式安装

命令:

sudo apt-get update  #更新源
sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    software-properties-common
    #证书安装
curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -    #GPG秘钥

添加docker软件源:

sudo add-apt-repository \
    "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu \
    $(lsb_release -cs) \
    stable"

docker-ce 安装

sudo apt-get install docker-ce

脚本自动安装

curl -fsSL get.docker.com -o get-docker.sh
#或者直接访问get.docker.com,将脚本保存为文件get-docker.sh
sudo sh get-docker.sh
#执行脚本文件

测试是否正确安装docker

docker run hello-world

若出现如下界面表示安装成功:
Ubuntu 14安装docker_第1张图片

镜像加速

如果觉得镜像拉取太慢,可以使用国内云服务商提供的加速器(阿里云、亚马逊中国等)。
本人系统Ubuntu 14,使用中科大提供的加速器,亲测可用,操作方法如下:

  • 编辑 /etc/default/docker 文件,修改如下配置:
#DOCKER_OPTS="--dns 8.8.8.8 --dns 8.8.4.4"
DOCKER_OPTS="--registry-mirror=https://docker.mirrors.ustc.edu.cn"

Ubuntu 14安装docker_第2张图片

  • 然后重启docker服务
service docker restart

在这里插入图片描述

  • 其他源(未亲测):
#Docker中国区官方镜像
https://registry.docker-cn.com
#网易
http://hub-mirror.c.163.com

更多信息请参考:
https://yeasy.gitbooks.io/docker_practice/content/install/ubuntu.html

你可能感兴趣的:(Ubuntu 14安装docker)