From 4680e2e0f3b05802113ae052798dd40b1c495c7f Mon Sep 17 00:00:00 2001 From: kev Date: Thu, 16 Jul 2015 22:24:25 +0800 Subject: [PATCH] update --- tesseract/Dockerfile | 4 ++-- tesseract/README.md | 20 ++++++++++++++++++++ tinc/README.md | 2 +- 3 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 tesseract/README.md diff --git a/tesseract/Dockerfile b/tesseract/Dockerfile index 9e5f9d5..03afc24 100644 --- a/tesseract/Dockerfile +++ b/tesseract/Dockerfile @@ -14,11 +14,11 @@ RUN apt-get update \ libtool \ && git clone https://github.com/tesseract-ocr/tesseract.git \ && git clone https://github.com/tesseract-ocr/tessdata.git \ - && mv -v tessdata/*.traineddata tesseract/tessdata/ \ + && mv -v tessdata/* tesseract/tessdata/ \ && cd tesseract \ && ./autogen.sh \ && ./configure \ - && make install \ + && make install install-langs \ && cd .. \ && rm -rf tesseract tessdata /var/cache/apk/* \ && apt-get purge --auto-remove -y autoconf \ diff --git a/tesseract/README.md b/tesseract/README.md new file mode 100644 index 0000000..184de50 --- /dev/null +++ b/tesseract/README.md @@ -0,0 +1,20 @@ +tesseract +========= + +![](https://badge.imagelayers.io/vimagick/tesseract:latest.svg) + +`Tesseract` is an Open Source OCR engine, available under the Apache 2.0 +license. It can be used directly, or (for programmers) using an API. It +supports a wide variety of languages. + +Tesseract doesn't have a built-in GUI, but there are several available from the +3rdParty page. + +Quick Start +----------- + +``` +$ alias tesseract='docker run --rm -v `pwd`:/work -w /work vimagick/tesseract' +$ tesseract myscan.png out +$ cat out.txt +``` diff --git a/tinc/README.md b/tinc/README.md index add14de..4413af2 100644 --- a/tinc/README.md +++ b/tinc/README.md @@ -1,7 +1,7 @@ tinc ==== -[![](https://badge.imagelayers.io/vimagick/tinc:latest.svg)](https://imagelayers.io/?images=vimagick/tinc:latest) +![](https://badge.imagelayers.io/vimagick/tinc:latest.svg) [`tinc`][1] is a Virtual Private Network (VPN) daemon that uses tunnelling and encryption to create a secure private network between hosts on the Internet.