Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.12 KB

File metadata and controls

37 lines (23 loc) · 1.12 KB

Run a Pre-built Image

Go to an empty directory, clone this repo (or just copy the docker-compose.yaml file there) and run:

docker-compose up -d

This will download and run the latest image which will create (or re-use) the logs, databases and configuration directories in the current dirfectory.

Go to http://localhost:3030/index.html in your browser.

The default username is admin and the password is pw.

Build a new Local Image

First clone the repo then download and unzip Jena Fuseki from here into this directory.

Edit the Dockerfile and update the COPY line to point to your downloaded Jena Fuseki.

Build the image with:

docker build  --tag twalmsley/aosd-fuseki .

and run it using:

docker-compose up -d

It will create logs, databases and configuration directories for persistent storage of data.

Go to http://localhost:3030/index.html in your browser.

The default username is admin and the password is pw.

(Don't use this for production obviously.)