What is the created time in docker images command? -


what created time when give command?

docker images enter image description here

it gives time 3 months ago, or 9 days ago.

is time uploaded docker hub?

even locally created images, shows 15 minutes ago, while had created minute ago.

it should date of latest docker build, defined in image/image.go.

you can see exact value

docker inspect -f '{{ .created }}' hello-world 

if in vm, timestamp might not precise local images, vm clock might not precisely synchronized (by typing 'date', see mine synchronized, on utc: 1 hour shift).


Comments