Fixes, new sort option "Last Completed"

This commit is contained in:
Stefan Hardegger
2026-06-18 12:53:22 +02:00
parent a2ed2f7b79
commit 7358a8ee4e
18 changed files with 127 additions and 27 deletions

View File

@@ -80,16 +80,16 @@ services:
ports:
- "8983:8983" # Expose Solr Admin UI for development
environment:
- SOLR_HEAP=512m
- SOLR_JAVA_MEM=-Xms256m -Xmx512m
- SOLR_HEAP=1024m
- SOLR_JAVA_MEM=-Xms512m -Xmx1024m
volumes:
- /volume1/docker/storycove/solr:/var/solr
deploy:
resources:
limits:
memory: 1G
memory: 2G
reservations:
memory: 512M
memory: 1G
stop_grace_period: 30s
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:8983/solr/admin/ping || exit 1"]