mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
7 lines
231 B
Bash
7 lines
231 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ ! "$1" == "--version" ]; then
|
||
|
echo "Using docker image for ocrmypdf (Version: $OCRMYPDF_VERSION)"
|
||
|
fi
|
||
|
docker run -v '/tmp/docspell-convert:/tmp/docspell-convert' -e "TZ=$TZ" jbarlow83/ocrmypdf:$OCRMYPDF_VERSION $@
|