From fb156b5d08fd7e15d0b5224653737f96dd562ee0 Mon Sep 17 00:00:00 2001 From: "stephane.david" Date: Wed, 15 Jul 2026 14:21:10 +0200 Subject: [PATCH] First version --- docker-compose.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..d35ccae --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,27 @@ +services: + node-hp-scan-to: + image: docker.io/manuc66/node-hp-scan-to:latest + restart: always + hostname: node-hp-scan-to + environment: + # REQUIRED - Change the next line to the IP address of your HP printer/scanner: + - IP=192.168.10.29 + # Name that your container will appear as to your printer: + - LABEL=node-hp-scan-to + # Set the timezone, such as "Europe/London": + - TZ=Europe/Paris + # Set the created filename pattern: + - PATTERN="scan"_dd-mm-yyyy_hh-MM-ss + # Run the Docker container as the same user ID as the host system: + - PGID=1000 + - PUID=1000 + # Optional - enable autoscanning a document when loaded into the scanner: + - MAIN_COMMAND=adf-autoscan + # If you need to pass additional configuration flag use the CMDLINE env, thy will be appened to the + # - CMDLINE=--debug --pdf + # If using Paperless-ngx, you can use its API to upload files: + # - PAPERLESS_POST_DOCUMENT_URL=http://:/api/documents/post_document/ + # - PAPERLESS_TOKEN= xxxxxxxxxxxx... + - RESOLUTION=300 + volumes: + - /var/lib/docker/volumes/scan:/scan \ No newline at end of file