Skip to content
Merged
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
10 changes: 10 additions & 0 deletions compose.override.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,13 @@ services:
-Dsolr.max.booleanClauses=30000
-Dsolr.environment=dev
- LOCAL_DEV=true
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8983/solr/openlibrary/admin/ping"]
interval: 30s
start_interval: 2s
start_period: 20s
timeout: 1s
retries: 24
volumes:
- ./docker/ol-local-solr-start.sh:/docker/ol-solr-start.sh:ro
ports:
Expand All @@ -66,6 +73,9 @@ services:
dockerfile: docker/Dockerfile.oldev
environment:
- OL_SOLR_NEXT=true
depends_on:
solr:
condition: service_healthy
volumes:
# Persistent volume mount for installed git submodules
- ol-vendor:/openlibrary/vendor
Expand Down
Loading