Comment on Lessons learned from using Docker Swarm mode in productionparentComments−lostpixel9yI 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 :)
Comments
I know it's counter to your question, but it really is quite trivial to containerise a java app, for example:
and to stay on-topic, you can run java apps in mesos without a docker wrapper :)