docker 基本命令
docker pull xxx 拉取xxx镜像
docker run -tid --name [containa_name] --net=host [image_name] 启动容器
docker stop [container_id] 停止容器
docker start [container_id] 启动已关闭的容器
docker rm -f [container_id] 删除容器
docker save [REPOSITORY:TAG] -o xxx.tar 将镜像存为文件
docker load -i xxx.tar 将镜像文件导出为镜像
docker rmi [image_id] 删除镜像