docker操作镜像玩法

1.
虚拟机下载VMware Workstation 15。
D:\tool\VMware Workstation 15

2.
CentOS 各版本的下载。参考
https://blog.csdn.net/qq_45064049/article/details/90209389
本例下载Centos7.5.1804版本。
D:\tool\Centos7.5.1804

3.
VMware安装Centos7。参考:
https://blog.csdn.net/babyxue/article/details/80970526

uname -r查看你的内核版本
3.10.0-862.el7.x86_64

ifconfig 查看IP,,,用PuTTY工具操作

*******======================================安装docker
https://blog.csdn.net/sk_Grace/article/details/81257548

yum -y install docker-io  # 安装docker
service docker start  # 启动docker服务
chkconfig docker on  # 加入开机启动

基本信息的查看:

docker version # 查看docker的版本号,包括客户端、服务端、依赖的Go等

docker info # 查看 docker信息,包括管理的images, containers数等

docker images #[

猜你喜欢

转载自blog.csdn.net/wyyother1/article/details/105313638