This image starts a Apache Tika Server for text extraction (English only).
To get started using the default port to listen on, run:
docker run -p 9998:9998 jgoodall/tika
To change the port and/or memory allocation (default is 1g), run:
docker run --env PORT=9123 --env MEMORY=4g -p 9123:9123 jgoodall/tika
To test, send a document to the server:
curl -H "Accept: application/json" -T testfile.pdf http://localhost:9998/meta
To build and push the image to docker hub:
VERS=v1.24.1
git tag -a $VERS
git push --tag
docker build -t jgoodall/tika -t jgoodall/tika:$VERS .
docker push jgoodall/tika
docker push jgoodall/tika:$VERS
Content type
Image
Digest
Size
350.5 MB
Last updated
over 6 years ago
docker pull jgoodall/tika