This repo is providing the Eclipse Equinox OSGi starter kits inside a docker container
#!/bin/bash
docker container run \
--name osgi \
--rm \
-it klibio/osgi-starterkit:latest
execute osgi shell commands e.g.
osgi> help
...
osgi> exit
Really want to stop Equinox? (y/n; default=y)
#!/bin/bash
docker build \
--no-cache \
--progress=plain \
--build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \
--build-arg VCS_REF=$(git rev-list -1 HEAD) \
--build-arg VERSION=`cat version.txt` \
-t klibio/osgi-starterkit:latest \
.