Lately I have found myself working a lot with containers with bind mounts and found no elegant way to display all of them in one go.
The command below gives you a nice overview as a json array. You need to have jq
installed.
docker inspect $(docker ps -a -q) | jq '[.[] | {Id: .Id[0:12], Name: .Config.Hostname, Image: .Config.Image, Binds: .HostConfig.Binds}]'