Docker Managing images Inspecting images

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Example

docker inspect <image>

The output is in JSON format. You can use jq command line utility to parse and print only the desired keys.

docker inspect <image> | jq -r '.[0].Author'

The above command will shows author name of the images.



Got any Docker Question?