Sign inSign up

jgoodall/tika

By jgoodall

Updated over 6 years ago

Apache Tika server

Image
0

2.4K

jgoodall/tika repository overview

tika-server

This image starts a Apache Tika Server for text extraction (English only).

Usage

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

Build Docker Image

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

Tag summary

Content type

Image

Digest

Size

350.5 MB

Last updated

over 6 years ago

docker pull jgoodall/tika