To list all Docker images on your system, you can use the following command:
docker images
This command will display a list of all available Docker images, including details such as:
- REPOSITORY: The name of the image repository.
- TAG: The tag associated with the image (often used for versioning).
- IMAGE ID: The unique identifier for the image.
- CREATED: The date and time when the image was created.
- SIZE: The size of the image.
If you want to see more detailed information about a specific image, you can use:
docker image inspect <image_name>
Replace <image_name> with the name of the image you want to inspect. This command provides extensive details about the specified image.
