[root@iZ8vbfaek3x3ogtpxnpnwfZ /]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE tomcat 9.0 b8e65a4d736d 4 months ago 680MB tomcat latest fb5657adc892 4 months ago 680MB hello-world latest feb5d9fea6a5 7 months ago 13.3kB centos latest 5d0da3dc9764 7 months ago 231MB ubuntu 15.10 9b9cb95443b5 5 years ago 137MB [root@iZ8vbfaek3x3ogtpxnpnwfZ /]#
1 2 3 4 5 6 7 8
[root@iZ8vbfaek3x3ogtpxnpnwfZ /]# docker images -a REPOSITORY TAG IMAGE ID CREATED SIZE tomcat 9.0 b8e65a4d736d 4 months ago 680MB tomcat latest fb5657adc892 4 months ago 680MB hello-world latest feb5d9fea6a5 7 months ago 13.3kB centos latest 5d0da3dc9764 7 months ago 231MB ubuntu 15.10 9b9cb95443b5 5 years ago 137MB [root@iZ8vbfaek3x3ogtpxnpnwfZ /]#
[root@iZ8vbfaek3x3ogtpxnpnwfZ /]# docker search hello-world NAME DESCRIPTION STARS OFFICIAL AUTOMATED hello-world Hello World! (an example of minimal Dockeriz… 1718 [OK] kitematic/hello-world-nginx A light-weight nginx container that demonstr… 151
显示前n条镜像
docker search —limit n 镜像名称
1 2 3 4 5 6 7 8 9
[root@iZ8vbfaek3x3ogtpxnpnwfZ ~]# docker search --limit 5 redis NAME DESCRIPTION STARS OFFICIAL AUTOMATED redis Redis is an open source key-value store that… 10851 [OK] bitnami/redis Bitnami Redis Docker Image 214 [OK] bitnami/redis-sentinel Bitnami Docker Image for Redis Sentinel 36 [OK] circleci/redis CircleCI images for Redis 12 [OK] bitnami/redis-exporter 6 [root@iZ8vbfaek3x3ogtpxnpnwfZ ~]#