can one shell out only the right to comment on a google document? i'd rather not get edit rights
yes
@Clueless I have a docker question for you
How can I tell what jvm version something on dockerhub is using?
JVM like the Java version?
yeah
In the docker file, they might say 'FROM JAVA:<version>' The from line basically specifies to use a pre-made container image.
$ docker run -it http://docker.elastic.co/logstash/logstash:7.5.2 bash bash-4.2$ java -version
that did what I wanted
Ah. Yeah, that works too. Sorry I didn't quite understand. :)
Memorize that: docker run -it image_hash <cmd>
its cool. I was wondering if there was a way to see the docker image tree. That would be nice to get a quick picture of what something was including