mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
5dbd35060a
before they would kind of lying around and pile up after a couple of processed items
7 lines
236 B
Bash
7 lines
236 B
Bash
#!/bin/sh
|
|
|
|
if [ ! "$1" == "--version" ]; then
|
|
echo "Using docker image for ocrmypdf (Version: $OCRMYPDF_VERSION)"
|
|
fi
|
|
docker run --rm -v '/tmp/docspell-convert:/tmp/docspell-convert' -e "TZ=$TZ" jbarlow83/ocrmypdf:$OCRMYPDF_VERSION $@
|