docker常用命令
-
查看镜像
docker image ls
-
查看运行中的容器
docker ps
-
宿主机和容器间复制文件
从主机复制到容器
sudo docker cp host_path containerID:container_path
从容器复制到主机
sudo docker cp containerID:container_path host_path
查看镜像
docker image ls
查看运行中的容器
docker ps
宿主机和容器间复制文件
从主机复制到容器sudo docker cp host_path containerID:container_path
从容器复制到主机sudo docker cp containerID:container_path host_path