Sign inSign up

sebinpj/solr

By sebinpj

Updated over 5 years ago

Solr base image without any volume mounts.

Image
0

1.0K

sebinpj/solr repository overview

Solr base image that can be used to create custom dockerfiles with solr cores

This image is directly forked from the official docker-solr repo

Github

Example Dockerfile

if you want to create a simple core named simple.core

FROM sebinpj/solr:8.4

RUN solr start \
 && solr create -c simple.core \

CMD ["solr-foreground"]

If you want to create a core with custom schema

FROM sebinpj/solr:8.4

RUN solr start \
 && solr create -c schema.core \
 && solr stop
 
COPY managed-schema /var/solr/data/schema.core/conf/managed-schema

CMD ["solr-foreground"]

Tag summary

Content type

Image

Digest

Size

266.8 MB

Last updated

over 5 years ago

docker pull sebinpj/solr:8.6-slim