Latest web development tutorials

Docker images command

Docker command Daquan Docker command Daquan


docker images: lists local mirror.

grammar

docker images [OPTIONS] [REPOSITORY[:TAG]]

OPTIONS Description:

  • -a: lists all the local mirror (including intermediate image layer, by default, to filter out the intermediate image layer);

  • --digests: Displays summary information mirroring;

  • -f: display mirroring satisfy the conditions;

  • --format: specifies the return value of the template file;

  • --no-trunc: display the full image information;

  • -q: Show only image ID.

Examples

Check local mirror list.

w3big@w3big:~$ docker images
REPOSITORY              TAG                 IMAGE ID            CREATED             SIZE
mymysql                 v1                  37af1236adef        5 minutes ago       329 MB
w3big/ubuntu           v4                  1c06aa18edee        2 days ago          142.1 MB
<none>                  <none>              5c6e1090e771        2 days ago          165.9 MB
httpd                   latest              ed38aaffef30        11 days ago         195.1 MB
alpine                  latest              4e38e38c8ce0        2 weeks ago         4.799 MB
mongo                   3.2                 282fd552add6        3 weeks ago         336.1 MB
redis                   latest              4465e4bcad80        3 weeks ago         185.7 MB
php                     5.6-fpm             025041cd3aa5        3 weeks ago         456.3 MB
python                  3.5                 045767ddf24a        3 weeks ago         684.1 MB
...

Lists list of mirrors for the REPOSITORY local mirror of ubuntu.

root@w3big:~# docker images  ubuntu
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
ubuntu              14.04               90d5884b1ee0        9 weeks ago         188 MB
ubuntu              15.10               4e3b13c8a266        3 months ago        136.3 MB

Docker command Daquan Docker command Daquan