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 co...
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 1ad63ac65f8a busybox "sh" 6 minutes ago Up 5 minutes vigorous_almeida 1dfb49be924c httpd "httpd-foreground" About an hour ago Up About an hour 80/tcp adoring_proskuriakova f2adf5ea7821 busybox:2060.1 "sh" About an hour ago Up A...
[root@oldboy-docker ~]# docker save nginx:1.20.1 -o oldboyedu_docker_nginx.tar.gz [root@oldboy-docker ~]# ls anaconda-ks.cfg oldboyedu_docker_nginx.tar.gz # 指定镜像ID导出 [root@oldboy-docker ~]# docker save 605c77e624dd -o oldboyedu_docker_nginx02.tar.gz [root@oldboy-docker ~]...
pull Pull an image or a repository from a registry 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...
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. ...
导出镜像 有时我们需要将一台电脑上的镜像复制到另一台电脑上使用,除了可以借助仓库外,还可以直接将镜像保存成一个文件,再拷贝到另一台电脑上导入使用。 导出镜像的命令为 # images [images...] 可以有多个 images 镜像 docker save [options] images [
# 如果要导出镜像到本地文件,可以使用 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 ...
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默认),可以指定到某个文件下 ...
REPOSITORY TAG IMAGE ID CREATED SIZE [root@cxypa bin]# docker save 导入镜像 每次都需要联网去 Docker Hub 仓库下载镜像到本地很慢,我们可以把下载到本地的镜像保存到文件中,以后需要再次使用该镜像时直接从文件中恢复镜像。 命令说明: #把指定的镜像保存到目标文件中 ...
docker save 可以多个镜像一起打包吗 dockerfile多个镜像 1. Dockerfile Dockerfile Dockerfile是一个文本格式的配置文件,用户可以使用Dockerfile快速创建自定义的镜像。 Dockerfile由一行行命令语句组成,基本一行命令就代表镜像封装中的一层,其中每一条指令都创建镜像的一层。