bnd - A Docker image for running enRoute OSGi framework? -
i want try , run enroute inside docker container cannot seem find docker images. can suggest location of image?
osgi enroute uses bndtools. there can export bndrun file executable jar (see base tutorial , deploying). therefore need have java 8 image. non-trivial task because oracle rather annoying concerning copyrights there on ggtools/java8
image. therefore, run osgi enroute executable jar on docker, can use following dockerfile:
from ggtools/java8 maintainer pkriens@gmail.com cmd java -jar test.jar add test.jar test.jar
you can build , run follows:
$ ls dockerfile test.jar $ docker build . $ docker images repository tag image id created size <none> <none> 491dc47dbee6 minute ago 174.8 mb <none> <none> 0e3b6c01e0b6 5 weeks ago 176.2 mb ubuntu latest 1c9b046c2850 7 months ago 187.9 mb ggtools/java8 latest dcdcbb7229ba 8 months ago 168.5 mb $ docker run 491dc47dbee6 welcome apache felix gogo g! eval:eval 3+4+5+6+7+8+9 42.0
if works application note osgi enroute website highly appreciated.
Comments
Post a Comment