202-使用镜像-列出已获取镜像

命令

docker image ls

docker images

示例

[root@localhost ~]# docker image ls
REPOSITORY                             TAG                 IMAGE ID            CREATED             SIZE
hello-world                            latest              fce289e99eb9        5 months ago        1.84kB

列说明

  • REPOSITORY: 仓库名
  • TAG: 标签
  • IMAGE ID: 镜像ID
  • CREATED: 创建时间
  • SEZE: 占用空间

猜你喜欢

转载自blog.csdn.net/dejunyang/article/details/93201539