update tesseract

This commit is contained in:
kev 2022-02-16 17:17:58 +08:00
parent c78dfda337
commit 6eb55fbf39
3 changed files with 12 additions and 10 deletions

View File

@ -2,8 +2,8 @@
# Dockerfile for tesseract CJK
#
FROM alpine
MAINTAINER kev <noreply@easypi.pro>
FROM alpine:3
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apk add --no-cache \

View File

@ -13,8 +13,8 @@ Tesseract doesn't have a built-in GUI, but there are several available from the
Quick Start
-----------
```
$ alias tesseract='docker run --rm -v `pwd`:/data -w /data vimagick/tesseract'
```bash
$ alias tesseract='docker run --rm -u $(id -u):$(id -g) -v `pwd`:/data -w /data vimagick/tesseract'
$ tesseract input.png output -l eng --psm 3
$ cat output.txt

View File

@ -1,6 +1,8 @@
tesseract:
image: vimagick/tesseract
command: tesseract input.png output -l eng --psm 3
volumes:
- ./data:/data
working_dir: /data
version: "3.8"
services:
tesseract:
image: vimagick/tesseract
command: tesseract input.png output -l eng --psm 3
volumes:
- ./data:/data
working_dir: /data