What is the created time in docker images command?

Sanath Ballal

What is the CREATED time exactly when you give this command?

docker images enter image description here

It gives the time like 3 months ago, or 9 days ago.

Is it the time it was uploaded to docker hub?

Even for the locally created images, it shows like 15 minutes ago, while I had created just a minute ago.

VonC

It should be the date of the latest docker build run by the image owner, as defined in the image/image.go file, which can be found in the container once the image has been run.

You can inspect low-level image info to see its exact value with:

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

where 'hello-world' is the name of your image.

If you are in a VM, the timestamp might not be precise for local images, as your VM clock might not be precisely synchronized (by typing 'date', I see mine is synchronized, but on UTC: one hour shift).

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

What does 'docker images ls' do?

From Java

How to sort my Docker images by size with `docker images` command?

From Dev

What is the impact of using multiple Base Images in Docker?

From Dev

Is there a Git command to show what branch a branch was created off of?

From Dev

How can optimize images created in real time?

From Dev

Docker Commit Created Images and ENTRYPOINT

From Dev

What is the meaning of "sandbox" in "docker run" command?

From Dev

How to restore docker images which are removed by `docker rmi` command?

From Dev

What does the command gcloud docker -a do?

From Dev

How do I use a volume created by the docker volume command?

From Dev

Docker load command replaces existing images with same name

From Dev

What is the precision of the bash builtin time command?

From Dev

Why do some docker images require a command when run?

From Dev

What is location of images pulled from Docker Hub via Docker for Mac

From Dev

What is the default of the time transform function in the coxph command?

From Dev

Docker build command with --tag unable to tag images

From Dev

Docker base images, what do they compose of?

From Dev

What is the "initialization time" in the find command?

From Dev

How can optimize images created in real time?

From Dev

What can the external command `time` and the reserved word `time` time?

From Dev

What does time command execution result mean?

From Dev

Different ways to modify the created file time and date using linux command?

From Dev

What is the command to update time and date from internet

From Dev

Bash command to list all docker images in a remote registry

From Dev

what is the Time complexity of redis del command?

From Dev

Shell Script - find command output sort based on time of file created

From Dev

How to run several docker images in one command?

From Dev

What is the best case to use the commit docker command?

From Dev

fuse 7 : Error executing command: by zero : when docker images is created

Related Related

  1. 1

    What does 'docker images ls' do?

  2. 2

    How to sort my Docker images by size with `docker images` command?

  3. 3

    What is the impact of using multiple Base Images in Docker?

  4. 4

    Is there a Git command to show what branch a branch was created off of?

  5. 5

    How can optimize images created in real time?

  6. 6

    Docker Commit Created Images and ENTRYPOINT

  7. 7

    What is the meaning of "sandbox" in "docker run" command?

  8. 8

    How to restore docker images which are removed by `docker rmi` command?

  9. 9

    What does the command gcloud docker -a do?

  10. 10

    How do I use a volume created by the docker volume command?

  11. 11

    Docker load command replaces existing images with same name

  12. 12

    What is the precision of the bash builtin time command?

  13. 13

    Why do some docker images require a command when run?

  14. 14

    What is location of images pulled from Docker Hub via Docker for Mac

  15. 15

    What is the default of the time transform function in the coxph command?

  16. 16

    Docker build command with --tag unable to tag images

  17. 17

    Docker base images, what do they compose of?

  18. 18

    What is the "initialization time" in the find command?

  19. 19

    How can optimize images created in real time?

  20. 20

    What can the external command `time` and the reserved word `time` time?

  21. 21

    What does time command execution result mean?

  22. 22

    Different ways to modify the created file time and date using linux command?

  23. 23

    What is the command to update time and date from internet

  24. 24

    Bash command to list all docker images in a remote registry

  25. 25

    what is the Time complexity of redis del command?

  26. 26

    Shell Script - find command output sort based on time of file created

  27. 27

    How to run several docker images in one command?

  28. 28

    What is the best case to use the commit docker command?

  29. 29

    fuse 7 : Error executing command: by zero : when docker images is created

HotTag

Archive