1. 容器
windows
docker export [容器id] -o image.tar # 导出
docker import image.tar [name]:[tag] # 导入
linux
docker export [容器id] -o image.tar # 导出
docker import image.tar [name]:[tag] # 导入
2. 镜像
windows
docker save [镜像id] -o image.tar # 导出
docker load -i image.tar # 导入
linux
docker save [镜像id] -o image.tar # 导出
docker load -i image.tar # 导入
3. 重命名
docker tag [镜像id] [name]:[tag]