i am a bit confused because of the version and tag handling of the open-liberty image. First: Whats the different between https://hub.docker.com/_/open-liberty and https://hub.docker.com/r/openliberty/open-liberty? Whats the right one?
I want to use a stable, not changing, version of the docker image for open-liberty.
At the moment i use this in my DOCKERFILE: FROM open-liberty:kernel
But I want to use a stable version and dont know were to find. If I look here: https://hub.docker.com/_/open-liberty?tab=description I only can see variants but no versions of open-liberty. I exspected something like that https://hub.docker.com/r/jboss/wildfly/tags
On Github (https://github.com/OpenLiberty/ci.docker/tree/master/official) I can see the changes on the DOCKERFILE. So at the moment I pull the image I will get the current "commit". So every developer in my team has a different version of this image.
At the moment we use something like that: FROM open-liberty:kernel@sha256:40fb5a0bdade0815d6e51be47b3f225551d645719da7b1029616334c429c8eb3
But that cant be the right solution. Can anybody explain me the reason why there are no stable tags on the open-liberty image?
Thanks for your support!