• 用法
  1. Usage: docker search [OPTIONS] TERM
  2. Search the Docker Hub for images
  3. --automated=false Only show automated builds
  4. --help=false Print usage
  5. --no-index=false Don't prepend index to output
  6. --no-trunc=false Don't truncate output
  7. -s, --stars=0 Only displays with at least x stars
  • 例子
  1. $ sudo docker search ubuntu

从官方仓库中搜索出含有关键字ubuntu的镜像:

  1. INDEX NAM DESCRIPTION STARS OFFICIAL AUTOMATED
  2. docker.io docker.io/ubuntu Ubuntu is a Debian-based Linux operating s... 2046 [OK]
  3. docker.io docker.io/ubuntu-upstart Upstart is an event-based replacement for ... 30 [OK]
  4. docker.io docker.io/torusware/speedus-ubuntu Always updated official Ubuntu docker imag... 25 [OK]
  5. docker.io docker.io/dorowu/ubuntu-desktop-lxde-vnc Ubuntu with openssh-server and NoVNC on po... 20 [OK]
  6. docker.io docker.io/sequenceiq/hadoop-ubuntu An easy way to try Hadoop on Ubuntu 19 [OK]
  7. docker.io docker.io/tleyden5iwx/ubuntu-cuda Ubuntu 14.04 with CUDA drivers pre-installed 16 [OK]
  8. docker.io docker.io/ubuntu-debootstrap debootstrap --variant=minbase --components... 12 [OK]
  • 总结

在使用docker创建容器时,必然要用到镜像文件。这时我们就得从仓库中拉取我们所需要的image文件。

pull

  • 用法
  1. Usage: docker pull [OPTIONS] NAME[:TAG|@DIGEST]
  2. Pull an image or a repository from the registry
  3. -a, --all-tags=false Download all tagged images in the repository
  4. --help=false Print usage
  • 例子

找到所需要的镜像:

  1. $ sudo docker pull docker.io/ubuntu:12.04

这里是从官方仓库中拉取下来版本号(TAG)为12.04的镜像,其中“docker.io” 可以不写,默认是从官方仓库下载。版本号(TAG)不写的话默认会拉取一个版本号为latest的镜像文件:

  1. Trying to pull repository docker.io/ubuntu ...
  2. d0e008c6cf02: Download complete
  3. a69483e55b68: Download complete
  4. bc99d1f906ec: Download complete
  5. 3c8e79a3b1eb: Download complete
  6. Status: Downloaded newer image for docker.io/ubuntu:12.04

见到如上类似结果说明镜像拉取成功。现在看一下自己的仓库,多了一个12.04的镜像。

  1. $ sudo docker images
  2. REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
  3. docker.io/ubuntu latest 63e3c10217b8 7 days ago 188.3 MB
  4. docker.io/ubuntu 12.04 d0e008c6cf02 7 days ago 134.7 MB
  5. docker.google/etcd 2.1.1 2c319269dd15 8 days ago 23.32 MB
  6. docker.io/postgres latest 730d1d72bda2 2 weeks ago 265.3 MB
  • 总结

push

  • 用法
  1. Usage: docker push [OPTIONS] NAME[:TAG]
  2. Push an image or a repository to the registry
  3. -f, --force=false Push to public registry without confirmation
  4. --help=false Print usage
  • 例子
  1. $ sudo docker push docker.io/ubuntu:latest
  • 总结

镜像的上传,push 默认是向官方仓库上传,由于服务器在国外,传输速度非常慢,就没试验成功过。注意的是,需要在docker hub上注册过后才可以上传镜像哦。关于私有仓库的上传将在后面章节详细讲解。