博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Docker 镜像小结---操作指令介绍(七)
阅读量:5925 次
发布时间:2019-06-19

本文共 3132 字,大约阅读时间需要 10 分钟。

一、搜索镜像

很多情况下我们可能需要下载某一类别的镜像,这时候我们就会用到搜索功能,也可以去 docker hub 官网页面搜索。

使用语法如下。

Usage:  docker search [OPTIONS] TERMSearch the Docker Hub for imagesOptions:  -f, --filter filter   Filter output based on conditions provided      --format string   Pretty-print search using a Go template      --help            Print usage      --limit int       Max number of search results (default 25)      --no-trunc        Don't truncate output

Docker 镜像小结---操作指令介绍(七)

我们可以看到,第一个镜像是没有用户名的,并且 OFFICIAL 是 OK,这样的镜像是由 Docker 公司进行维护的。

二、下载镜像

使用方法如下。

Usage:  docker pull [OPTIONS] NAME[:TAG|@DIGEST]Pull an image or a repository from a registryOptions:  -a, --all-tags                Download all tagged images in the repository      --disable-content-trust   Skip image verification (default true)      --help                    Print usage

正常情况下,我们输入查到的镜像的全称即可。

三、查看本地镜像

Usage:  docker images [OPTIONS] [REPOSITORY[:TAG]]List imagesOptions:  -a, --all             Show all images (default hides intermediate images)      --digests         Show digests  -f, --filter filter   Filter output based on conditions provided      --format string   Pretty-print images using a Go template      --help            Print usage      --no-trunc        Don't truncate output  -q, --quiet           Only show numeric IDs

Docker 镜像小结---操作指令介绍(七)

四、显示镜像构建历史

Usage:  docker history [OPTIONS] IMAGEShow the history of an imageOptions:      --format string   Pretty-print images using a Go template      --help            Print usage  -H, --human           Print sizes and dates in human readable format (default true)      --no-trunc        Don't truncate output  -q, --quiet           Only show numeric IDs

Docker 镜像小结---操作指令介绍(七)

五、删除镜像

Usage:  docker rmi [OPTIONS] IMAGE [IMAGE...]Remove one or more imagesOptions:  -f, --force      Force removal of the image      --help       Print usage      --no-prune   Do not delete untagged parents

Docker 镜像小结---操作指令介绍(七)

六、镜像创建

Usage:  docker commit [OPTIONS] CONTAINER [REPOSITORY[:TAG]]Create a new image from a container's changesOptions:  -a, --author string    Author (e.g., "John Hannibal Smith 
") -c, --change list Apply Dockerfile instruction to the created image --help Print usage -m, --message string Commit message -p, --pause Pause container during commit (default true)

之前我们已经演示过了。

七、上传镜像

Usage:  docker push [OPTIONS] NAME[:TAG]Push an image or a repository to a registryOptions:      --disable-content-trust   Skip image signing (default true)      --help                    Print usage

之前已经演示过。

八、给镜像打 tag

Usage:  docker tag SOURCE_IMAGE[:TAG] TARGET_IMAGE[:TAG]Create a tag TARGET_IMAGE that refers to SOURCE_IMAGEOptions:      --help   Print usage

之前已经演示过。

九、存出和载入镜像

Usage:  docker save [OPTIONS] IMAGE [IMAGE...]Save one or more images to a tar archive (streamed to STDOUT by default)Options:      --help            Print usage  -o, --output string   Write to a file, instead of STDOUT
Usage:  docker load [OPTIONS]Load an image from a tar archive or STDINOptions:      --help           Print usage  -i, --input string   Read from tar archive file, instead of STDIN  -q, --quiet          Suppress the load output

转载于:https://blog.51cto.com/wzlinux/2046045

你可能感兴趣的文章
通过jsp请求Servlet来操作HBASE
查看>>
Learn Python 012: for loop
查看>>
安全试验资源
查看>>
系统问题
查看>>
StanFord ML 笔记 第六部分&&第七部分
查看>>
NFS服务搭建
查看>>
echarts雷达图点击事件 包含(2.x,3.85,4.02)测试
查看>>
spring boot 加载过程分析--ConfigurationClassPostProcessor
查看>>
[译] Fiber内幕:深入概述React新的协调算法
查看>>
app设计摘要
查看>>
Typescript 的成长环境
查看>>
转 C++STL之string
查看>>
demo06 webpack + babel7 + typescript
查看>>
eureka 服务实例实现快速下线快速感知快速刷新配置解析
查看>>
C# 给DateTime赋值正确方式
查看>>
html中子界面与父界面相互操作或传值
查看>>
转岗·空调工程师·自己动手拆空调记录
查看>>
SpringMVC_实现简单的增删改查
查看>>
spring_简介
查看>>
Daily scrum[2013.12.01]
查看>>