1.右击用vm打开进行解压到指定目录
2.启动登陆
用户:kgc 密码:123456
3.打开终端
输入:ip addr 显示宿主机ip
openssh -server 远程连接工具安装
可用Xshell工具根据 ip 远程连接
4.下载Docker
sudo gedit /etc/apt/sources.list 修改Ubuntu镜像源 改为国内镜像源
https://yq.aliyun.com/articles/110806 Docker CE 镜像源站
sudo apt-get update 更新软件列表 ( upgrade是更新软件 )
sudo apt-get -y install apt-transport-https ca-certificates curl software-properfies-common 下载安装工具
curl -fsSL http://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add - 安装GPG证书
sudo add-apt-repository "deb [arch=amd64] http://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable" 写入软件源信息
sudo apt-get -y update 更新软件列表
sudo apt-get -y install docker-ce 安装Docker-ce (社区版)
[ sudo apt-get -y install docker-ce=[VERSION] ) ] 安装指定的Docker版本
[ apt-cache madison docker-ce ] 查找Docker-CE的版本
docker --version 查看Docker版本
sudo su 切换为超级管理
docker images 查看镜像
原文:https://www.cnblogs.com/loveyoul9/p/11318503.html