Skip to content

Latest commit

 

History

History
65 lines (43 loc) · 2.55 KB

README.Docker.md

File metadata and controls

65 lines (43 loc) · 2.55 KB

OpenLink Structured Data Editor - Docker

Table of Contents

Introduction

The OpenLink Structured Data Editor (or OSDE) is a tool for creating and editing structured data using RDF Language statements/triples using a browser.

OSDE enables the creation and editing of data using abstract subjectpredicateobject or entityattributevalue notations.

OSDE can currently ingest RDF from documents serialised as RDF-Turtle, JSON-LD and RDF/XML.

Documents can be saved to either local or remote storage or directly copied as RDF-Turtle documents.

License

Copyright 2014-2020 OpenLink Software

This software is licensed under the GNU General Public License (see COPYING).

Note: that the only valid version of the GPL license as far as this project is concerned is the original GNU General Public License Version 2, dated June 1991.

Quickstart

First we need to pull the docker image to our local system using the following command:

$ docker pull openlink/osde

Now we can start the image using the following command:

$ docker run -i -t -p 8081:8080 openlink/osde

This instantiates the docker container on your computer, starts a small http server inside the container which starts to listen on TCP port 8080. The command then maps TCP port 8081 on your computer to this http server which hosts the OSDE application.

You now can connect to this docker container by opening the following URL in your favourite browser: http://localhost:8081/.

The OSDE website has a good tutorial on how to use OSDE including some screen casts.

See Also