教培参考
教育培训行业知识型媒体
发布时间: 2024年11月22日 11:46
二:第一个docker案例
2.1:执行docker run hello-world
2.2:docker run做了什么?
2.3:Docker镜像命令docker images 列出本地主机上的镜像
REPOSITORY:表示镜像的仓库源VIRTUAL SIZE:镜像的大小
2.4:docker search [某个镜像的名字]
2.5:docker pull [某个镜像的名字]下载镜像:docker pull [镜像的名字]:[TAG]
2.6:docker rmi -f [镜像的名字]/[镜像的id]删除镜像:docker rmi -f 19b3f968b60c
2.7:docker rmi -f 镜像名:TAG 镜像名:TAG删除多个镜像:docker rmi -f hello-world nginx
2.8:docker rmi -f $(docker images -qa)删除所有镜像