This image is directly forked from the official docker-solr repo
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"]
Content type
Image
Digest
Size
266.8 MB
Last updated
over 5 years ago
docker pull sebinpj/solr:8.6-slim