Skip to content

Latest commit

 

History

History
45 lines (39 loc) · 2.09 KB

README.md

File metadata and controls

45 lines (39 loc) · 2.09 KB

docker-osgi-starterkit

This repo is providing the Eclipse Equinox OSGi starter kits inside a docker container

Eclipse OSGi starter kit version

container

Docker Image Version (tag latest semver) Docker Image Size (tag) GitHub

liveliness

build and docker publish Docker Pulls OpenIssues OpenPullRequests

using interactively

#!/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)

building

#!/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 \
  .