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.
15 lines
716 B
Docker
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
|