Files
mDMS/infra/paperless/Dockerfile
m 2aa532e717 chore: initial commit — spinout from m/otto
Spun out mDMS strategy + tooling from m/otto into its own repo on 2026-05-15.

Migrated:
- docs/strategy.md (was: m/otto:docs/mdms-strategy.md)
- infra/paperless/ (config + audit + migrate scripts)
- infra/samba-canon/ (Canon MB5100 SMB1 bridge container)

History in m/otto: issues #429–#438. Going forward, all mDMS issues
file here. Sibling m/paperless (separate repo) remains the bare
Docker Compose for Paperless-ngx itself.
2026-05-15 17:31:20 +02:00

15 lines
716 B
Docker

# Thin overlay on clusterzx/paperless-ai:3.0.9 — same digest as
# the :latest tag pulled on 2026-04-06, but pinned so future image
# refreshes do not silently wipe the type-restriction patches.
#
# Patch 1: routes/setup.js — restrict-existing-document-types on
# the manual processing route (already applied previously
# by docker cp, but volatile across container recreation).
# Patch 2: server.js — same restriction on the scheduled-scan
# loop. Without this, new document types kept appearing
# even with RESTRICT_TO_EXISTING_DOCUMENT_TYPES=yes.
FROM clusterzx/paperless-ai:3.0.9
COPY setup.js.patched /app/routes/setup.js
COPY server.js.patched /app/server.js