Skip to content

Commit

Permalink
move config files to config folder
Browse files Browse the repository at this point in the history
  • Loading branch information
anitacaron committed Nov 17, 2023
1 parent 9995994 commit 8330801
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ services:
ports:
- 9999:9999
volumes:
- ./data/monarch:/data
- ./data/RWStore.properties:/RWStore.properties
- ./data/log4j.properties:/log4j.properties
- ./data:/data
- ./config/RWStore.properties:/RWStore.properties
- ./config/log4j.properties:/log4j.properties
healthcheck:
test: ["CMD", "curl", "-f", "http://triplestore:9999/"]
interval: 3s
Expand All @@ -43,5 +43,5 @@ services:
environment:
- SERVER=http://triplestore:9999/blazegraph
volumes:
- ./data/monarch:/data
- ./data/RWStore.properties:/RWStore.properties
- ./data:/data
- ./config/RWStore.properties:/RWStore.properties
6 changes: 2 additions & 4 deletions upload.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@ VOLUME /data
ENV WORKSPACE=/opt/SSSOM
WORKDIR /opt/SSSOM

# ENV BUILD_OUTPUT=${WORKSPACE}/build.out
COPY /data/ols /data
COPY /data/dataloader.xml /opt/SSSOM/dataloader.xml

COPY /config/dataloader.xml /opt/SSSOM/dataloader.xml
COPY process.sh /opt/SSSOM/process.sh
# COPY rdf4j_sssom.txt /opt/SSSOM/rdf4j_sssom.txt

RUN chmod +x /opt/SSSOM/*.sh

Expand Down

0 comments on commit 8330801

Please sign in to comment.