mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
3d074c5fc9
- Using a script in `/usr/local/bin ` now to overwrit the default *ocrmypdf* version and thus replaced the approach using a bash function - Also had to add volume mapping to docker call **ATTENTION** the path /tmp/docspell-convert:/tmp/docspell-convert must be mapped when starting Docspell's docker image!
21 lines
636 B
Bash
Executable File
21 lines
636 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Starting unoconv listener"
|
|
unoconv -l &
|
|
|
|
# replace own ocrmypdf with official dockerfile, i.e. newer version
|
|
if [ -S "/var/run/docker.sock" ]; then
|
|
if [ ! -f "/usr/local/bin/ocrmypdf.sh" ]; then
|
|
echo "Found 'docker.sock': Installing Docker and redirecting 'ocrmypdf' command to official dockerfile by jbarlow83"
|
|
apk --no-cache add docker
|
|
|
|
mv /usr/local/bin/joex-ocrmypdf.sh /usr/local/bin/ocrmypdf
|
|
chmod ug+x /usr/local/bin/ocrmypdf
|
|
fi
|
|
|
|
docker pull -q jbarlow83/ocrmypdf:$OCRMYPDF_VERSION
|
|
echo "Using OCRmyPDF@Docker v$(ocrmypdf --version)" && echo
|
|
fi
|
|
|
|
/opt/docspell-joex/bin/docspell-joex "$@"
|