本人亲自验证,方法可行,如下为每一步操作步骤
说明:由于docker官方镜像地址在国外,国内下载速度极慢,几乎下载不动,所以推荐使用阿里云上的docker镜像地址,具体地址文中会贴出
第一步:打开虚拟机,进入到ubuntu系统,打开命令行
第二步:在命令行执行命令 curl -sSL http://acs-public-mirror.oss-cn-hangzhou.aliyuncs.com/docker-engine/intranet | sh
执行完毕后会出现报错,请别在意,执行提示命令,下图为执行完后报错信息及命令提示
第三步:执行错误提示命令 sudo apt-get install docker
该命令执行完后,发现已经安装成功
第四步:执行命令 docker -v
执行完docker -v后能看到版本信息,则表明docker已经安装成功
到这里,docker已经安装完毕,非常简单,给自己留以备用
# step 1: 安装必要的一些系统工具 sudo apt-get update sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common
# step 2: 安装GPG证书 curl -fsSL http://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
# Step 3: 写入软件源信息 sudo add-apt-repository "deb [arch=amd64] http://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
# Step 4: 更新并安装Docker-CE sudo apt-get -y update sudo apt-get -y install docker-ce
测试是否成功
sudo docker run hello-world