Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEATURE] Solr 9 compatibility #1122

Merged
12 changes: 10 additions & 2 deletions Build/Test/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,18 @@ services:
"

solr:
image: docker.io/solr:8
image: docker.io/solr:9
volumes:
- ${DLF_ROOT}/Configuration/ApacheSolr/configsets:/var/solr/data/configsets
- ./solr/contrib/ocrsearch:/opt/solr/contrib/ocrsearch
- ./solr/modules/ocrsearch:/opt/solr/modules/ocrsearch
ports:
- 8983:8983
user: root # run as root to change the permissions of the solr folder
# Change permissions of the solr folder, create a default core and start solr as solr user
command: /bin/sh -c "
chown -R 8983:8983 /var/solr
&& runuser -u solr -- solr-precreate default-core
"

composer_install:
image: docker.io/typo3/core-testing-${DOCKER_PHP_IMAGE}:latest
Expand Down
Binary file not shown.
Binary file not shown.
20 changes: 0 additions & 20 deletions Configuration/ApacheSolr/configsets/dlf/conf/params.json

This file was deleted.

Loading