feat: add Paperless-ngx and Gatus templates#884
Open
BinkyTwin wants to merge 3 commits into
Open
Conversation
built with Refined Cloudflare Pages Action⚡ Cloudflare Pages Deployment
|
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new Dokploy blueprint for Paperless-ngx (document management + OCR), including its compose stack, Dokploy template configuration, logo asset, and a new meta.json entry so it appears in the central template index.
Changes:
- Added
paperless-ngxblueprint with Docker Compose services (Paperless-ngx + Postgres + Redis) and persistent volumes. - Added Dokploy
template.tomlfor domain/env variable wiring (URL, secret key, DB password, timezone, OCR language). - Registered the template in
meta.jsonand added apaperless-ngx.svglogo.
Reviewed changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| meta.json | Adds the Paperless-ngx template entry (id/name/version/links/tags/logo). |
| blueprints/paperless-ngx/docker-compose.yml | Defines Paperless-ngx + Postgres + Redis stack with healthchecks and volumes. |
| blueprints/paperless-ngx/template.toml | Defines Dokploy variables, domain mapping, and env injection for the compose stack. |
| blueprints/paperless-ngx/paperless-ngx.svg | Adds the template logo asset referenced by meta.json. |
| main_domain = "${domain}" | ||
| postgres_password = "${password:32}" | ||
| paperless_secret_key = "${password:64}" | ||
| paperless_url = "https://${main_domain}" |
Author
There was a problem hiding this comment.
Adjusted in 0c3d1cc: the default PAPERLESS_URL now uses http://${main_domain} to match the repository convention for app URL env vars behind Dokploy. Re-ran template validation, Docker Compose validation, metadata processing, git diff --check, and docker compose config with the updated URL.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
/claim #152
Summary
Refs #152 as a partial template-bounty contribution.
Verification
node dedupe-and-sort-meta.jsnode --import ./build-scripts/node_modules/tsx/dist/loader.mjs build-scripts/validate-template.ts --dir blueprints/paperless-ngxnode --import ./build-scripts/node_modules/tsx/dist/loader.mjs build-scripts/validate-template.ts --dir blueprints/gatusnode --import ./build-scripts/node_modules/tsx/dist/loader.mjs build-scripts/validate-docker-compose.ts --file blueprints/paperless-ngx/docker-compose.ymlnode --import ./build-scripts/node_modules/tsx/dist/loader.mjs build-scripts/validate-docker-compose.ts --file blueprints/gatus/docker-compose.ymlgit diff --checkdocker compose -f blueprints/paperless-ngx/docker-compose.yml configdocker compose -f blueprints/gatus/docker-compose.yml configdocker manifest inspect ghcr.io/paperless-ngx/paperless-ngx:2.20.15docker manifest inspect postgres:18-alpinedocker manifest inspect redis:8-alpinedocker manifest inspect ghcr.io/twin/gatus:v5.36.0