what created time when give command?
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
Post a Comment