Run a command in a new container # 创建一个新的容器并运行一个命令 save Save an image to a tar archive # 保存一个镜像为一个 tar 包[对应 load] search Search for an image on the Docker Hub # 在docker hub中搜索镜像 start Start a stopped containers # 启动容器 stop Stop a running contai...
Save an image to a tar.gz file using gzip You can use gzip to save the image file and make the backup smaller. $docker save myimage:latest|gzip > myimage_latest.tar.gz Cherry-pick particular tags You can even cherry-pick particular tags of an image repository. ...
Save an image to a tar.gz file using gzip You can use gzip to save the image file and make the backup smaller. $docker save myimage:latest|gzip > myimage_latest.tar.gz Cherry-pick particular tags You can even cherry-pick particular tags of an image repository. ...
pull Pull an image or a repository from a registry push Push an image or a repository to a registry rename Rename a container restart Restart one or more containers rm Remove one or more containers rmi Remove one or more images run Run a command in a new container save Save one or more...
# 如果要导出镜像到本地文件,可以使用 docker save 命令,可以使用"--input"或"<" root@Ubuntu14:~/test-dir# docker load --input new-hello_v3.tar Loaded image: new/hello:v3 root@Ubuntu14:~/test-dir# docker load < new-hello_v3.tar ...
导出镜像 有时我们需要将一台电脑上的镜像复制到另一台电脑上使用,除了可以借助仓库外,还可以直接将镜像保存成一个文件,再拷贝到另一台电脑上导入使用。 导出镜像的命令为 # images [images...] 可以有多个 images 镜像 docker save [options] images [
3. 镜像的导入 docker save -o 4. 镜像的导出 docker load -i 一.镜像的生成途径: Dockerfile 基于容器制作 Docker Hub automated builds 二. 容器制作镜像 1. 根据容器的更改创建一个新镜像 docker commit [options] container[repository[:tag]]
push Push an image or a repository to a registry rm Remove one or more images save Save one or more images to a tar archive (streamed to STDOUT by default) tag Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE Run 'docker image COMMAND --help' for more information on a command....
使用docker load 导入 docker save 命令导出的镜像归档文件。 Load an image from a tar archive or STDIN 代码语言:javascript 复制 docker load<busybox.tar.gz docker load--input fedora.tar 3. Tip:Linuxscp 命令 Linux scp 命令用于 Linux 之间复制文件和目录。scp是 secure copy的缩写, scp是linux系统下...
push Push an image or a repository to a registry 将镜像或存储库推入注册表 rm Remove one or more images 删除 一个或多个图像 save Save one or more images to a tar archive (streamed to STDOUT by default) 保存一个或多个图像到一个tar归档文件(流到stdout默认),可以指定到某个文件下 ...