Display the Software Bill Of Materials ( the content of the image in table format )
docker sbom MY_IMAGE_NAME
Example: docker sbom nginx
To delete all containers, execute
docker rm -f $(docker ps -a -q)
To delete all images, execute
docker rmi -f $(docker images -q)