Easy Tutorial
❮ Docker Container Usage Docker Hello World ❯

Docker images Command

Docker Command Manual


docker images: List local images.

Syntax

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

OPTIONS Description:

-

-a: List all local images (including intermediate image layers, by default, intermediate image layers are filtered out);

-

--digests: Show digest information of the images;

-

-f: Show images that meet the conditions;

-

--format: Specify the template file for the return value;

-

--no-trunc: Show full image information;

-

-q: Show only image IDs.

Examples

View the list of local images.

tutorialpro@tutorialpro:~$ docker images
REPOSITORY              TAG                 IMAGE ID            CREATED             SIZE
mymysql                 v1                  37af1236adef        5 minutes ago       329 MB
tutorialpro/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
...

List the images with the REPOSITORY as ubuntu from the local images.

root@tutorialpro:~# 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 Manual

❮ Docker Container Usage Docker Hello World ❯