We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f27ac66 commit f1b7125Copy full SHA for f1b7125
2 files changed
compose.override.yaml
@@ -146,6 +146,9 @@ services:
146
- ${OL_MOUNT_DIR:-.}:/openlibrary
147
# For OSP download persistence across restarts
148
- solr-updater-data:/solr-updater-data
149
+ depends_on:
150
+ solr:
151
+ condition: service_healthy
152
153
volumes:
154
ol-vendor:
docker/ol-home-start.sh
@@ -8,8 +8,5 @@ python --version
8
echo "Waiting for postgres..."
9
until pg_isready --host db; do sleep 5; done
10
11
-echo "Waiting for Solr..."
12
-until curl -s -o /dev/null -w "%{http_code}" "http://solr:8983/solr/openlibrary/select?q=*:*&rows=0&wt=json" | grep -q "200"; do
13
- sleep 5;
14
-done
+
15
make reindex-solr
0 commit comments