Until we come up with a cleaner way of releasing pipes artifacts, users will have to grab the jars from maven central as in the Dockerfile below.

Example using the tika-fetcher-http module with the /tika endpoint

Docker file: Dockerfile (based on https://github.com/LogicalSpark/docker-tikaserver/tree/2.0.0)

tika-config file: tika-config.xml

Start tika-server with Docker: docker run --name my-tika-container -v $(pwd):/config -p 9998:9998 my-tika -c ./config/tika-config.xml

CURL a request: curl -X PUT http://localhost:9998/tika -H "fetcherName: http" -H "fetchKey:http://tika.apache.org"

  • No labels