mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-05-13 22:06:55 +02:00
update tesseract
This commit is contained in:
parent
c78dfda337
commit
6eb55fbf39
@ -2,8 +2,8 @@
|
|||||||
# Dockerfile for tesseract CJK
|
# Dockerfile for tesseract CJK
|
||||||
#
|
#
|
||||||
|
|
||||||
FROM alpine
|
FROM alpine:3
|
||||||
MAINTAINER kev <noreply@easypi.pro>
|
MAINTAINER EasyPi Software Foundation
|
||||||
|
|
||||||
RUN set -xe \
|
RUN set -xe \
|
||||||
&& apk add --no-cache \
|
&& apk add --no-cache \
|
||||||
|
@ -13,8 +13,8 @@ Tesseract doesn't have a built-in GUI, but there are several available from the
|
|||||||
Quick Start
|
Quick Start
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
```
|
```bash
|
||||||
$ alias tesseract='docker run --rm -v `pwd`:/data -w /data vimagick/tesseract'
|
$ 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
|
$ tesseract input.png output -l eng --psm 3
|
||||||
$ cat output.txt
|
$ cat output.txt
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
version: "3.8"
|
||||||
|
services:
|
||||||
tesseract:
|
tesseract:
|
||||||
image: vimagick/tesseract
|
image: vimagick/tesseract
|
||||||
command: tesseract input.png output -l eng --psm 3
|
command: tesseract input.png output -l eng --psm 3
|
||||||
|
Loading…
x
Reference in New Issue
Block a user