Skip to content

Commit

Permalink
Merge pull request #2782 from sul-dlss/docker-compose
Browse files Browse the repository at this point in the history
Add docker compose file to start solr
  • Loading branch information
taylor-steve authored Jan 6, 2025
2 parents fa994ed + 39a8163 commit 06ae746
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
services:
solr:
image: "solr:${SOLR_VERSION:-9.6.1}"
volumes:
- $PWD/solr/config:/opt/solr/conf
ports:
- "${SOLR_PORT:-8983}:8983"
entrypoint:
- docker-entrypoint.sh
- solr-precreate
- blacklight-core
- /opt/solr/conf
- "-Xms256m"
- "-Xmx512m"

0 comments on commit 06ae746

Please sign in to comment.