Docker常用命令
之所以记这个,是因为有一段时间没用用docker以后,相应的命令就忘记了~
1. 修改Docker源
MacOS环境下,修改Docker的源,这里用中科大的源。
在docker图标上选择performances,进入Docker Engine页,添加下面内容。
{
"debug": true,
"experimental": true,
"registry-mirrors": [
"https://docker.mirrors.ustc.edu.cn"
]
}
Windows和Linux直接参考:https://lug.ustc.edu.cn/wiki/mirrors/help/docker/
2. Docker镜像相关命令
2.1 列出本机的所有 image 文件。
docker image ls
2.2 删除 image 文件
docker image rm [imageName]
2.3 获取镜像
docker image pull library/hello-world
其中,library
是组名&#