forked from NatLibFi/Skosmos
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
425 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,85 +1,73 @@ | ||
@prefix : <http://base/#> . | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix tdb2: <http://jena.apache.org/2016/tdb#> . | ||
@prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix fuseki: <http://jena.apache.org/fuseki#> . | ||
@prefix tdb2: <http://jena.apache.org/2016/tdb#> . | ||
@prefix text: <http://jena.apache.org/text#> . | ||
@prefix skos: <http://www.w3.org/2004/02/skos/core#> . | ||
@prefix fuseki: <http://jena.apache.org/fuseki#> . | ||
|
||
ja:DatasetTxnMem rdfs:subClassOf ja:RDFDataset . | ||
ja:MemoryDataset rdfs:subClassOf ja:RDFDataset . | ||
ja:RDFDatasetOne rdfs:subClassOf ja:RDFDataset . | ||
ja:RDFDatasetSink rdfs:subClassOf ja:RDFDataset . | ||
ja:RDFDatasetZero rdfs:subClassOf ja:RDFDataset . | ||
|
||
tdb2:DatasetTDB rdfs:subClassOf ja:RDFDataset . | ||
tdb2:DatasetTDB2 rdfs:subClassOf ja:RDFDataset . | ||
|
||
tdb2:GraphTDB rdfs:subClassOf ja:Model . | ||
tdb2:GraphTDB2 rdfs:subClassOf ja:Model . | ||
|
||
<http://jena.hpl.hp.com/2008/tdb#DatasetTDB> | ||
rdfs:subClassOf ja:RDFDataset . | ||
|
||
<http://jena.hpl.hp.com/2008/tdb#GraphTDB> | ||
rdfs:subClassOf ja:Model . | ||
|
||
text:TextDataset | ||
rdfs:subClassOf ja:RDFDataset . | ||
[] rdf:type fuseki:Server ; | ||
fuseki:services ( | ||
:skosmos_service | ||
) | ||
. | ||
|
||
:service_tdb_all a fuseki:Service ; | ||
rdfs:label "TDB2+text skosmos" ; | ||
fuseki:dataset :text_dataset ; | ||
fuseki:name "skosmos" ; | ||
fuseki:serviceQuery "query" , "" , "sparql" ; | ||
fuseki:serviceReadGraphStore "get" ; | ||
fuseki:serviceReadQuads "" ; | ||
:skosmos_service rdf:type fuseki:Service ; | ||
rdfs:label "TDB2+text skosmos" ; | ||
fuseki:name "skosmos" ; | ||
fuseki:serviceQuery "query" , "" , "sparql" ; | ||
fuseki:serviceReadGraphStore "get" ; | ||
fuseki:serviceReadQuads "" ; | ||
fuseki:serviceReadWriteGraphStore "data" ; | ||
fuseki:serviceReadWriteQuads "" ; | ||
fuseki:serviceUpdate "" , "update" ; | ||
fuseki:serviceUpload "upload" . | ||
fuseki:serviceReadWriteQuads "" ; | ||
fuseki:serviceUpdate "" , "update" ; | ||
fuseki:serviceUpload "upload" ; | ||
fuseki:dataset :text_dataset | ||
. | ||
|
||
:text_dataset a text:TextDataset ; | ||
text:dataset :tdb_dataset_readwrite ; | ||
text:index :index_lucene . | ||
:text_dataset rdf:type text:TextDataset ; | ||
text:dataset :tdb_dataset_readwrite ; | ||
text:index <#indexLucene> | ||
. | ||
|
||
:tdb_dataset_readwrite | ||
a tdb2:DatasetTDB2 ; | ||
# tdb2:unionDefaultGraph true ; | ||
tdb2:location "/fuseki/databases/skosmos" . | ||
:tdb_dataset_readwrite rdf:type tdb2:DatasetTDB2 ; | ||
tdb2:location "/fuseki/databases/skosmos" ; | ||
# tdb2:unionDefaultGraph true ; | ||
. | ||
|
||
:index_lucene a text:TextIndexLucene ; | ||
text:directory <file:/fuseki/databases/skosmos/text> ; | ||
text:entityMap :entity_map ; | ||
text:storeValues true . | ||
<#indexLucene> rdf:type text:TextIndexLucene ; | ||
text:directory <file:/fuseki/databases/skosmos/text> ; | ||
text:entityMap <#entMap> ; | ||
text:storeValues true | ||
. | ||
|
||
# Text index configuration for Skosmos | ||
:entity_map a text:EntityMap ; | ||
text:entityField "uri" ; | ||
text:graphField "graph" ; | ||
<#entMap> rdf:type text:EntityMap ; | ||
text:defaultField "pref" ; | ||
text:entityField "uri" ; | ||
text:uidField "uid" ; | ||
text:langField "lang" ; | ||
text:graphField "graph" ; | ||
text:map ( | ||
# skos:prefLabel | ||
[ text:field "pref" ; | ||
text:predicate skos:prefLabel ; | ||
text:analyzer [ a text:LowerCaseKeywordAnalyzer ] | ||
text:analyzer [ rdf:type text:LowerCaseKeywordAnalyzer ] | ||
] | ||
# skos:altLabel | ||
[ text:field "alt" ; | ||
text:predicate skos:altLabel ; | ||
text:analyzer [ a text:LowerCaseKeywordAnalyzer ] | ||
text:analyzer [ rdf:type text:LowerCaseKeywordAnalyzer ] | ||
] | ||
# skos:hiddenLabel | ||
[ text:field "hidden" ; | ||
text:predicate skos:hiddenLabel ; | ||
text:analyzer [ a text:LowerCaseKeywordAnalyzer ] | ||
text:analyzer [ rdf:type text:LowerCaseKeywordAnalyzer ] | ||
] | ||
# skos:notation | ||
[ text:field "notation" ; | ||
text:predicate skos:notation ; | ||
text:analyzer [ a text:LowerCaseKeywordAnalyzer ] | ||
text:analyzer [ rdf:type text:LowerCaseKeywordAnalyzer ] | ||
] | ||
) . | ||
) | ||
. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
## Licensed to the Apache Software Foundation (ASF) under one or more | ||
## contributor license agreements. See the NOTICE file distributed with | ||
## this work for additional information regarding copyright ownership. | ||
## The ASF licenses this file to You under the Apache License, Version 2.0 | ||
## (the "License"); you may not use this file except in compliance with | ||
## the License. You may obtain a copy of the License at | ||
## | ||
## http://www.apache.org/licenses/LICENSE-2.0 | ||
## | ||
## Unless required by applicable law or agreed to in writing, software | ||
## distributed under the License is distributed on an "AS IS" BASIS, | ||
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
## See the License for the specific language governing permissions and | ||
## limitations under the License. | ||
|
||
## Apache Jena Fuseki server Dockerfile. | ||
|
||
## This Dockefile builds a reduced footprint container. | ||
|
||
ARG JAVA_VERSION=17 | ||
|
||
ARG ALPINE_VERSION=3.17.1 | ||
ARG JENA_VERSION="" | ||
|
||
# Internal, passed between stages. | ||
ARG FUSEKI_DIR=/fuseki | ||
ARG FUSEKI_JAR=jena-fuseki-server-${JENA_VERSION}.jar | ||
ARG JAVA_MINIMAL=/opt/java-minimal | ||
|
||
## ---- Stage: Download and build java. | ||
FROM eclipse-temurin:${JAVA_VERSION}-alpine AS base | ||
|
||
ARG JAVA_MINIMAL | ||
ARG JENA_VERSION | ||
ARG FUSEKI_DIR | ||
ARG FUSEKI_JAR | ||
ARG REPO=https://repo1.maven.org/maven2 | ||
ARG JAR_URL=${REPO}/org/apache/jena/jena-fuseki-server/${JENA_VERSION}/${FUSEKI_JAR} | ||
|
||
RUN [ "${JENA_VERSION}" != "" ] || { echo -e '\n**** Set JENA_VERSION ****\n' ; exit 1 ; } | ||
RUN echo && echo "==== Docker build for Apache Jena Fuseki ${JENA_VERSION} ====" && echo | ||
|
||
# Alpine: For objcopy used in jlink | ||
RUN apk add --no-cache curl binutils | ||
|
||
## -- Fuseki installed and runs in /fuseki. | ||
WORKDIR $FUSEKI_DIR | ||
|
||
## -- Download the jar file. | ||
COPY download.sh . | ||
RUN chmod a+x download.sh | ||
|
||
# Download, with check of the SHA1 checksum. | ||
RUN ./download.sh --chksum sha1 "$JAR_URL" | ||
|
||
## -- Alternatives to download : copy already downloaded. | ||
## COPY ${FUSEKI_JAR} . | ||
|
||
## Use Docker ADD - does not retry, does not check checksum, and may run every build. | ||
## ADD "$JAR_URL" | ||
|
||
## -- Make reduced Java JDK | ||
|
||
ARG JDEPS_EXTRA="jdk.crypto.cryptoki,jdk.crypto.ec" | ||
RUN \ | ||
JDEPS="$(jdeps --multi-release base --print-module-deps --ignore-missing-deps ${FUSEKI_JAR})" && \ | ||
jlink \ | ||
--compress 2 --strip-debug --no-header-files --no-man-pages \ | ||
--output "${JAVA_MINIMAL}" \ | ||
--add-modules "${JDEPS},${JDEPS_EXTRA}" | ||
|
||
ADD entrypoint.sh . | ||
ADD log4j2.properties . | ||
|
||
## ---- Stage: Build runtime | ||
FROM alpine:${ALPINE_VERSION} | ||
|
||
## Import ARGs | ||
ARG JENA_VERSION | ||
ARG JAVA_MINIMAL | ||
ARG FUSEKI_DIR | ||
ARG FUSEKI_JAR | ||
|
||
COPY --from=base /opt/java-minimal /opt/java-minimal | ||
COPY --from=base /fuseki /fuseki | ||
|
||
WORKDIR $FUSEKI_DIR | ||
|
||
ARG LOGS=${FUSEKI_DIR}/logs | ||
ARG DATA=${FUSEKI_DIR}/databases | ||
|
||
ARG JENA_USER=fuseki | ||
ARG JENA_GROUP=$JENA_USER | ||
ARG JENA_GID=1000 | ||
ARG JENA_UID=1000 | ||
|
||
# Run as this user | ||
# -H : no home directory | ||
# -D : no password | ||
RUN addgroup -g "${JENA_GID}" "${JENA_GROUP}" && \ | ||
adduser "${JENA_USER}" -G "${JENA_GROUP}" -s /bin/ash -u "${JENA_UID}" -H -D | ||
|
||
RUN mkdir --parents "${FUSEKI_DIR}" && \ | ||
chown -R $JENA_USER ${FUSEKI_DIR} | ||
|
||
USER $JENA_USER | ||
|
||
RUN \ | ||
mkdir -p $LOGS && \ | ||
mkdir -p $DATA && \ | ||
chmod a+x entrypoint.sh | ||
|
||
## Default environment variables. | ||
ENV \ | ||
JAVA_HOME=${JAVA_MINIMAL} \ | ||
JAVA_OPTIONS="-Xmx2048m -Xms2048m" \ | ||
JENA_VERSION=${JENA_VERSION} \ | ||
FUSEKI_JAR="${FUSEKI_JAR}" \ | ||
FUSEKI_DIR="${FUSEKI_DIR}" | ||
|
||
EXPOSE 3030 | ||
|
||
ENTRYPOINT ["./entrypoint.sh" ] | ||
CMD [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Commit: 26153afe9a229bb7a609d5406d899eb240ab385e |
Oops, something went wrong.