Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion compose.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
---
services:
app:
depends_on:
- solr
build:
context: .
ports:
- '3000:3000'
environment:
- SOLR_URL=http://solr:8983/solr/blacklight-core
env_file:
- .env
solr:
image: solr:9.7
volumes:
- solr-data:/var/solr
- $PWD/solr/conf:/opt/solr/conf
ports:
- 8983:8983
- '8983:8983'
entrypoint:
- docker-entrypoint.sh
- solr-precreate
Expand Down
Loading