Home > Article > Operation and Maintenance > How to check the docker image after downloading it
1. docker images: You can list all the images on this machine
REPOSITORY: warehouse name.
TAG: used to distinguish different images in the same warehouse.
IMAGE ID: The unique identifier of the image: 64-bit HashID.
CREATED: The creation time of the image.
SIZE: The virtual size occupied by the image. This size includes the size of all shared files.
2. Use the docker inspect command to view image details
docker inspect [NAME]/[CONTAINER ID]: images will only list the basic information of the image. Detailed information can be viewed through the inspect command. :
For more related tutorials, please pay attention to the docker tutorial column on the PHP Chinese website.
The above is the detailed content of How to check the docker image after downloading it. For more information, please follow other related articles on the PHP Chinese website!