2020-09-08 06:07:04
working on writing some docs: https://docs.google.com/document/d/17cljhZnAiQTL9yzhZ_INxKx131LUzNs2paP2kCCgljo/edit?usp=sharing

Fireduck
2020-09-08 18:47:52
can one shell out only the right to comment on a google document? i'd rather not get edit rights

Rotonen
2020-09-08 18:57:32
yes

Fireduck
2020-09-08 20:04:36
@Clueless I have a docker question for you

Fireduck
2020-09-08 20:05:02
How can I tell what jvm version something on dockerhub is using?

Fireduck
2020-09-08 20:20:43
JVM like the Java version?

Clueless
2020-09-08 20:21:00
yeah

Fireduck
2020-09-08 20:21:43
In the docker file, they might say
'FROM JAVA:<version>'
The from line basically specifies to use a pre-made container image.

Clueless
2020-09-08 20:36:05
$ docker run -it http://docker.elastic.co/logstash/logstash:7.5.2 bash
bash-4.2$ java -version

Fireduck
2020-09-08 20:36:08
that did what I wanted

Fireduck
2020-09-08 20:37:29
Ah. Yeah, that works too.
Sorry I didn't quite understand. :)

Clueless
2020-09-08 20:37:57
Memorize that: docker run -it image_hash <cmd>

Clueless
2020-09-08 20:38:27
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

Fireduck