Skip to content

Commit

Permalink
[Fix] Fix location of shared db-server configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
blcham committed Nov 25, 2023
1 parent 026efe4 commit ac9c87c
Show file tree
Hide file tree
Showing 14 changed files with 9 additions and 127 deletions.
14 changes: 9 additions & 5 deletions deploy/shared/db-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@ ENV GRAPHDB_INSTALL_DIR=/opt/graphdb/dist

WORKDIR ${GRAPHDB_HOME}

# Copy repository config
COPY repo-config /repo-config
COPY repo-init.sh ${GRAPHDB_INSTALL_DIR}/repo-init.sh
# Install libs related to RDF processing
RUN apk add py3-rdflib
RUN apk add perl-uri

EXPOSE 7200
# Copy initialization data and repository config
COPY init-data /root/graphdb-import
COPY init-config /repo-config
COPY bin/* ${GRAPHDB_INSTALL_DIR}/bin/

CMD ${GRAPHDB_INSTALL_DIR}/repo-init.sh /repo-config ${GRAPHDB_HOME} & ${GRAPHDB_INSTALL_DIR}/bin/graphdb -Dgraphdb.home=${GRAPHDB_HOME}
EXPOSE 7200

CMD ${GRAPHDB_INSTALL_DIR}/bin/repo-init.sh /repo-config ${GRAPHDB_HOME} & ${GRAPHDB_INSTALL_DIR}/bin/graphdb -Dgraphdb.home=${GRAPHDB_HOME} -Dgraphdb.logback=${GRAPHDB_INSTALL_DIR}/conf/logback.xml
File renamed without changes.
File renamed without changes.
22 changes: 0 additions & 22 deletions deploy/shared/db-server/db-server/Dockerfile

This file was deleted.

33 changes: 0 additions & 33 deletions deploy/shared/db-server/repo-config/config-record-manager-app.ttl

This file was deleted.

This file was deleted.

34 changes: 0 additions & 34 deletions deploy/shared/db-server/repo-init.sh

This file was deleted.

0 comments on commit ac9c87c

Please sign in to comment.