Skip to content

Commit

Permalink
Merge branch 'main' into zip-files-development
Browse files Browse the repository at this point in the history
  • Loading branch information
sharonluong committed Sep 11, 2024
2 parents 1b6d998 + 576a6f8 commit 694ecb3
Show file tree
Hide file tree
Showing 46 changed files with 966 additions and 726 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,17 @@ jobs:
run: |
docker run -d --rm -p 43030:3030 atomgraph/fuseki --mem /test
- name: Make directory for solr config
run: mkdir -p /tmp/solr-config

# Need to copy the config is outside of the source path, otherwise it produces permission conflicts
- name: Copy Solr Config into container
run: sudo cp -r ${{ github.workspace }}/etc/solr-config/* /tmp/solr-config/

- name: Run solr container as command to trigger core creation
run: |
docker run -v /tmp/solr-config:/solr_config -d --rm -p 48983:8983 solr:9 solr-precreate access /solr_config/access
- name: Checkout submodules
run: git submodule update --init --recursive

Expand Down
12 changes: 11 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,14 @@ services:
image: atomgraph/fuseki
ports:
- "43030:3030"
command: --mem /test
command: --mem /test
solr:
image: solr:9
ports:
- "48983:8983"
volumes:
- ./etc/solr-config:/solr_config/config
command:
- solr-precreate
- access
- /solr_config/config
Loading

0 comments on commit 694ecb3

Please sign in to comment.