A small web service that provides OCR capabilities.
852
This is a small web service providing OCR capabilities.
Create docker-compose.yml file with the following content:
version: '3.3'
services:
ocr-api:
image: odacharlee/tesseract-ocr-api
restart: always
ports:
- '5001:5000'
volumes:
- ./traineddata:/traineddata
environment:
- LANGUAGES=jpn,chi_sim,chi_tra
And run the following command:
docker-compose up -d
This project is licensed under the MIT License.
Content type
Image
Digest
sha256:c74052eec…
Size
122 MB
Last updated
over 2 years ago
docker pull odacharlee/tesseract-ocr-api