To create and run the Docker image:
$ docker build . -t sc-solr
$ docker run -p 8983:8983 --name sc-docker sc-solr
Or alternatively use Docker Compose:
$ docker compose run
Then access Solr at http://localhost:8983/solr/#/
$ curl -H "Content-Type: application/json" \
-X POST \
-d @documents/mss_170.json \
'http://localhost:8983/solr/development-core/update?commit=true'