implimentation
Dockerfile provisions mongodb and LDPjs based on the phusion/baseimage so mongodb can run as a service on the same container. LDPjs is a submodule and must be added before the docker container can be built.
git submodule init
git submodule update
Example from IBM devworks of how to use the Linked Data Platform
The W3C specification can be found here
To build:
docker build .
To run from docker index:
First run:
docker run -d \
--name ldpjs \
-p 27017:27017 -p 28017:28017 \
-v="data:/var/mongodb/data:rw" \
-d "ldpjs"
# Start up:
docker start ldpjs