使用docker search 命令可以搜索docker hub官方仓库中的镜像。

# docker search --help

Usage:    docker search [OPTIONS] TERM

从 Docker Hub 官网搜寻镜像

选项:
-f, --filter filter 过滤输出内容
--format string 格式化输出内容--limit int 限制输出结果个数,默认为25个--no-trunc 不截断输出结果

搜索官方所有ubuntu的镜像

# docker search ubuntu
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
ubuntu Ubuntu is a Debian-based Linux operating sys… [OK]
dorowu/ubuntu-desktop-lxde-vnc Docker image to provide HTML5 VNC interface … [OK]
rastasheep/ubuntu-sshd Dockerized SSH service, built on top of offi… [OK]
consol/ubuntu-xfce-vnc Ubuntu container with "headless" VNC session… [OK]
ubuntu-upstart Upstart is an event-based replacement for th… [OK]
ansible/ubuntu14.-ansible Ubuntu 14.04 LTS with ansible [OK]
neurodebian NeuroDebian provides neuroscience research s… [OK]
1and1internet/ubuntu--nginx-php-phpmyadmin-mysql- ubuntu--nginx-php-phpmyadmin-mysql- [OK]
ubuntu-debootstrap debootstrap --variant=minbase --components=m… [OK]
nuagebec/ubuntu Simple always updated Ubuntu docker images w… [OK]
i386/ubuntu Ubuntu is a Debian-based Linux operating sys…
1and1internet/ubuntu--apache-php-7.0 ubuntu--apache-php-7.0 [OK]
ppc64le/ubuntu Ubuntu is a Debian-based Linux operating sys…
eclipse/ubuntu_jdk8 Ubuntu, JDK8, Maven , git, curl, nmap, mc, … [OK]
1and1internet/ubuntu--nginx-php-5.6-wordpress- ubuntu--nginx-php-5.6-wordpress- [OK]
codenvy/ubuntu_jdk8 Ubuntu, JDK8, Maven , git, curl, nmap, mc, … [OK]
darksheer/ubuntu Base Ubuntu Image -- Updated hourly [OK]
pivotaldata/ubuntu A quick freshening-up of the base Ubuntu doc…
smartentry/ubuntu ubuntu with smartentry [OK]
1and1internet/ubuntu--sshd ubuntu--sshd [OK]
1and1internet/ubuntu--php-7.1 ubuntu--php-7.1 [OK]
paasmule/bosh-tools-ubuntu Ubuntu based bosh-cli [OK]
ossobv/ubuntu Custom ubuntu image from scratch (based on o…
pivotaldata/ubuntu-gpdb-dev Ubuntu images for GPDB development
pivotaldata/ubuntu16.-build Ubuntu 16.04 image for GPDB compilation

搜索官方提供的带有ubuntu关键字的镜像:

# docker search --filter=is-official=true ubuntu

  NAME DESCRIPTION STARS OFFICIAL AUTOMATED
  ubuntu Ubuntu is a Debian-based Linux operating sys… 9512 [OK]
  ubuntu-upstart Upstart is an event-based replacement for th… 97 [OK]
  neurodebian NeuroDebian provides neuroscience research s… 56 [OK]
  ubuntu-debootstrap debootstrap --variant=minbase --components=m… 40 [OK]

docker search - 搜寻镜像的更多相关文章

  1. docker简单介绍----镜像和容器管理

    docker可以分为三部分:docker镜像   docker仓库  docker容器 docker镜像:一个image可以包含一个镜像,也可以理解为一个系统模板,里面安装了相关应用,也可以是纯净版的 ...

  2. 4.docker学习之镜像

    镜像 我们知道,我们想在Windows操作系统上跑Linux,需要安装一个虚拟机程序,然后下载一个Linux镜像,在该虚拟机程序中创建一个虚拟机,并使用该镜像安装对应的Linux操作系统,安装好之后, ...

  3. Docker学习之镜像操作

    使用Docker镜像 以下都是Docker镜像的一系列重要名操作,包括获取.查看.搜索.删除.创建.存出或载入.上传等.可使用docker image help命令查看帮助. 1.获取镜像(pull) ...

  4. Docker 核心技术之镜像

    镜像简介 镜像是一个Docker的可执行文件,其中包括运行应用程序所需的所有代码内容.依赖库.环境变量和配置文件等. 通过镜像可以创建一个或多个容器. 镜像搜索 - docker search 作用: ...

  5. [转]图解Docker容器和镜像

    本文转自:https://www.cnblogs.com/wangqiaomei/p/5818636.html 图解Docker容器和镜像 这篇文章希望能够帮助读者深入理解Docker的命令,还有容器 ...

  6. docker 系列 - 基础镜像环境和Docker常用命令整理

    =======================docker 基础镜像环境 alpine=======================可以使用 docker search 命令搜索指定的 image, ...

  7. [转]Docker中的镜像

    引言 这篇文章中我们主要来探讨下Docker镜像,它是用来启动容器的构建基石,本文的所用到的Dcoker版本是17.1,API版本是1.33,Go的版本是1.9.2,OS是基于Arch Linux的M ...

  8. Docker安装Tomcat镜像并部署web项目

    一.安装Tomcat 1.查找Docker Hub上的tomcat镜像 docker search tomcat 2.拉取官方的镜像 docker pull tomcat 等待下载完毕,需要一些时间. ...

  9. 图解Docker容器和镜像

    图解Docker容器和镜像 这篇文章希望能够帮助读者深入理解Docker的命令,还有容器(container)和镜像(image)之间的区别,并深入探讨容器和运行中的容器之间的区别. 当我对Docke ...

随机推荐

  1. nodejs 配置服务器

    node 是 js 的运行的后台环境,他自身集成了很多模块,集成的模块直接 require 就行了: npm 第三方平台,他也是为 node 服务的,对于 npm 中的模块,先 npm install ...

  2. vim 配置 scala 语法高亮

    第一步:执行下面这个命令: mkdir -p ~/.vim/{ftdetect,indent,syntax}for d in ftdetect indent syntax ; do curl -o ~ ...

  3. leetcode-easy-listnode-206 reverse linked list

    mycode   98.87 # Definition for singly-linked list. # class ListNode(object): # def __init__(self, x ...

  4. web开发(九) 使用javamail进行发送邮件,(使用QQ,163,新浪邮箱服务器)

    在网上看见一篇不错的文章,写的详细. 以下内容引用那篇博文.转载于<http://www.cnblogs.com/whgk/p/6506027.html>,在此仅供学习参考之用. 一.发送 ...

  5. 阶段3 2.Spring_07.银行转账案例_10 使用动态代理实现事务控制

    回到事物的案例中 我们现在希望用代码比较精简的这个AccountServiceImpl这个类.而不是一堆事物的AccountServiceImpl_OLD这个类 新建BeanFactory类 Acco ...

  6. JPA访问数据库的几种方式

    JPA访问数据库的几种方式 本文为原创,转载请注明出处:https://www.cnblogs.com/supiaopiao/p/10901793.html 1. Repository 1.1. 通过 ...

  7. python 生成excel,并下载到本地

    from django.shortcuts import reverse,redirect,render from operations import models import xlwt impor ...

  8. Eclipse 包含头文件 添加环境变量

    Eclipse 中新建C 或C ++到项目时,头文件报警,显示“Unresolved inclusion:<stdio.h>” 虽然不影响项目到编译和运行,确也无法查看头文件,让人感觉实在 ...

  9. 【HANA系列】SAP HANA XS Administration Tool登录参数设置

    公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[HANA系列]SAP HANA XS Admi ...

  10. 查找两个有序数组中的第K个元素(find kth smallest element in 2 sorted arrays)

    查找两个有序数组中的第K个元素 int FindKth(int a[], int b[], int k, int astart, int aend, int bstart, int bend) { ; ...