docker
docker copied to clipboard
image missing ocrmypdf
I use the nextcloud:stable image and upon upgrading to 31.0.4, I get an error on the Security & setup warnings page:
OCRmyPDF CLI is not installed. For more details see the documentation ↗.
It looks like the all-in-one repo has an env var NEXTCLOUD_ADDITIONAL_APKS to add additional packages, but I didn't see that option in the regular docker image.
my compose file:
# yq .services.nextcloud docker-compose.yml
image: nextcloud:stable
container_name: nextcloud
restart: unless-stopped
volumes:
- /media/fast/nextcloud:/var/www/html
- /media/slow/nextcloud:/var/www/html/data
depends_on:
- mariadb
labels:
- "com.centurylinklabs.watchtower.monitor-only=true"
healthcheck:
test: curl http://localhost || exit 1
timeout: 10s