Dear Wiki user, You have subscribed to a wiki page or wiki category on "Tika Wiki" for change notification.
The "TikaJAXRS" page has been changed by KonstantinGribov: https://wiki.apache.org/tika/TikaJAXRS?action=diff&rev1=32&rev2=33 Comment: Add info about docker container == Installation == The easiest way to get the Tika JAXRS server is to download the latest stable release binary. This is available from the [[http://tika.apache.org/download.html|Apache Tika downloads page]], via your favourite local mirror. You want the ''tika-server-1.x.jar'' file, eg ''tika-server-1.7.jar'' + + Alternatively you can use unofficial [[https://www.docker.com/|docker]] image from Dave Meikle. == Building from source == If you need to customise the server in some way, and/or need the very latest version to try out a fix, then to build from source: @@ -51, +53 @@ Once the server is running, you can visit the server's URL in your browser (eg {{{http://localhost:9998/}}}), and the basic welcome page will confirm that the Server is running, and give links to the various endpoints available. Below is some basic documentation on how to interact with the services using cURL and HTTP. + + == Using prebuilt Docker image == + Also, you can download and start it with + + {{{ + docker pull logicalspark/docker-tikaserver # only on initial download/update + docker run --rm -p 9998:9998 logicalspark/docker-tikaserver + }}} + With {{{--rm}}} option it will be deleted as soon as container stopped. Dockerfile can be found at [[https://github.com/LogicalSpark/docker-tikaserver|Github]]. = Services = All services that take files use HTTP "PUT" requests. Original file must be sent in request body without any additional encoding (do not use multipart/form-data or other containers).
