In this article, we will need to learn how to view image information in Docker 1. The images command lists imagesUse the following two commands to list the existing images on the local machine: docker images or: docker image ls As shown in the following figure: Explain the fields marked in red above:
2. Use the tag command to add tags to the image Usually, in order to quickly find a certain image in subsequent work, we can use the For the As you can see, there is an additional The 3. Use the inspect command to view image details Through the docker inspect docker.io/mysql:5.7 docker inspect -f {{".Size"}} docker.io/mysql:5.7 4. Use the history command to view the image historyIn the previous section, we know that an image is composed of multiple layers. So, how do we know the specific content of each layer? The docker history docker.io/mysql:5.7 As you can see, the above information is too long. For the convenience of display, it is omitted later. If you want to see the specific information, you can add the docker history --no-trunc docker.io/mysql:5.7 V. ConclusionIn this article, we focused on how to view image information in Docker, as well as the functions of the tag command, inspect command, and history command. This is the end of this article about how to view image information on Docker. For more information about how to view image information on Docker, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of the process of creating floor navigation effects with JavaScript
>>: What are the benefits of using B+ tree as index structure in MySQL?
Why use prettier? In large companies, front-end d...
1. Log4j for log segmentation 1) Prepare three pa...
Simply put, delayed replication is to set a fixed...
Preface This article will share some docker-compo...
This article mainly describes how to implement fo...
Table of contents 1. What is a doubly linked list...
Table of contents 1. Implement the component time...
HTML is made up of tags and attributes, which are...
Copy code The code is as follows: <html> &l...
Use text-align, margin: 0 auto to center in CSS W...
The format of textarea can be saved to the databas...
When customizing the installation of software, yo...
Preface Creating shortcuts in Linux can open appl...
I have previously shared the usage of asynchronou...
Introduction When talking about distribution, we ...