Skip to content

Commit

Permalink
digest
Browse files Browse the repository at this point in the history
  • Loading branch information
somnek committed May 9, 2024
1 parent d0152a8 commit dbdca34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ func removeImage(c *docker.Client, id string) {

func listImages(c *docker.Client, showAll bool) []docker.APIImages {
opts := docker.ListImagesOptions{
All: showAll,
All: showAll,
Digests: true,
}
images, err := c.ListImages(opts)
if err != nil {
Expand Down

0 comments on commit dbdca34

Please sign in to comment.