|
|
|
|
|
by lostpixel
3570 days ago
|
|
I know it's counter to your question, but it really is quite trivial to containerise a java app, for example: FROM openjdk:8u92-jdk-alpine
COPY file.jar file.jar
CMD java -Duser.timezone=UTC -cp file.jar com.foo
and to stay on-topic, you can run java apps in mesos without a docker wrapper :) |
|