The goal of our team is to have about a dozen of docker images ready for testing purposes with various testing scenarios. In order to ease choosing we directly want to attach information about the scenarios to the images. I have identified adding labels and comments while committing containers as solutions to this problem using docker commit --message/--change. However, now I have the problem that docker does not seem to allow the display of the COMMENT column outside of the docker history command. My desired approach is to use
docker images --filter "label=product_version_full=X.X.X"
in order to list docker images suitable to test our team's version "X.X.X". While that is working fine I do not get enlightened with the comments that I had added previously to the images in the resulting table.
I have already spent some time on the internet looking for the solution but could find it neither here nor elsewhere. Has anyone already come across it?
Best regards!