View the import time of docker's latest imported images

View the latest import time of docker

docker images --format "{
    
    {.ID}}\t{
    
    {.CreatedAt}}" | sort -k 2 -r

insert image description here

Guess you like

Origin blog.csdn.net/qq_44534541/article/details/131091056