docker icon indicating copy to clipboard operation
docker copied to clipboard

image missing ocrmypdf

Open rayslinky opened this issue 8 months ago • 1 comments

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

rayslinky avatar Apr 25 '25 14:04 rayslinky

There are various hook and examples to extend the image.

J0WI avatar Apr 28 '25 20:04 J0WI