Apache Solr

Enterprise search platform featuring full-text search, hit highlighting, faceted search, real-time indexing, dynamic clustering, and rich document (e.g., Word, PDF) handling.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3'
 
services:
  solr:
    image: solr
    ports:
     - "8983:8983"
    volumes:
      - ./data:/var/solr
    command:
      - solr-precreate
      - gettingstarted
    restart: unless-stopped  

Resources

Website: https://solr.apache.org/

GitHub: https://hub.docker.com/_/solr

Docker Hub: https://github.com/apache/solr

Configuration: https://solr.apache.org/guide/solr/latest/deployment-guide/solr-in-docker.html