Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM node:11

WORKDIR /app

EXPOSE 8080
COPY . .
RUN yarn install

CMD ["yarn", "start"]
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,22 @@ General config file: `RDFExplorer/public/scripts/services/settings.js`

To change the query execution behavior check: `RDFExplorer/public/scripts/services/property-graph.js`

## Docker

### Build

```bash
docker build -t rdfexplorer .
```

### Run

```bash
docker run --rm -it -p 8081:8080 rdfexplorer
```

> Access on http://localhost:8081/

## License

<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.