Apache Tika Server 1.22 with Tesseract 4
10K+
Configurable Apache Tika Server Docker Image with Tesseract 4.
Allows providing external configuration file for Tika Server - for disabling OCR or any other needs.
Pulling wyattjoh/tika-server:
docker pull wyattjoh/tika-server
Simply running Tika Server with default config and publishing Tika port on the host machine:
docker run -p 9998:9998 -it wyattjoh/tika-server
Running Tika Server with external configuration:
<?xml version="1.0" encoding="UTF-8"?>
<properties>
<parsers>
<parser class="org.apache.tika.parser.DefaultParser">
<parser-exclude class="org.apache.tika.parser.ocr.TesseractOCRParser"/>
</parser>
</parsers>
</properties>
docker run -it -p 9998:9998 -v $PWD/tika-config.xml:/tika-config.xml wyattjoh/tika-server
Content type
Image
Digest
Size
371.6 MB
Last updated
almost 7 years ago
docker pull wyattjoh/tika-server