Configurable Linked Data Viewer.
1.9K
Run the following command to start the app:
docker run -p 8082:8082 semmtech/linked-data-viewer:latest
Note: To configure the application, add the volumes described below.
Configure the application by mounting the appropriate volumes
| Configuration | Mount path |
|---|---|
| Server config* | /usr/src/app/server/dist/config.json |
| Client config* | /usr/src/app/client/dist/html/config.json |
| Queries* | /usr/src/app/client/dist/html/queries |
| Application logo | /usr/src/app/client/dist/html/static/images/laces_logo.svg |
| Favicon | /usr/src/app/client/dist/html/static/favicon.png |
For example to add all the required configuration:
docker run -p 8082:8082 /
-v "path-to-server-config/config.json:/usr/src/app/server/dist/config.json" /
-v "queries-path/queries:/usr/src/app/client/dist/html/queries" /
-v "path-to-client-config/config.json:/usr/src/app/client/dist/html/config.json" /
semmtech/linked-data-viewer:latest
The config file should have the following format:
{
"users": [
{
"id": "",
"email": "",
"password": ""
}
],
"cookies": {
"secret": "",
"maxAgeDays": 14,
"secure": false,
"sameSite": "lax"
},
"dataServiceOptions": {
"mode": "post",
"auth": "basic",
"username": "",
"password": ""
}
}
Content type
Image
Digest
sha256:2667ada11…
Size
408.3 MB
Last updated
4 months ago
docker pull semmtech/linked-data-viewer