mirror of
https://github.com/Dokploy/templates.git
synced 2026-05-06 02:07:03 -05:00
[PR #735] [MERGED] feat(blueprint): add Verdaccio - private node.js package registry #1271
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/Dokploy/templates/pull/735
Author: @wladiarce
Created: 3/3/2026
Status: ✅ Merged
Merged: 3/5/2026
Merged by: @Siumauricio
Base:
canary← Head:add-verdaccio-template📝 Commits (1)
fc72f73feat(blueprint): add Verdaccio - private node.js package registry📊 Changes
4 files changed (+349 additions, -18 deletions)
View changed files
➕
blueprints/verdaccio/docker-compose.yml(+17 -0)➕
blueprints/verdaccio/template.toml(+259 -0)➕
blueprints/verdaccio/verdaccio.svg(+38 -0)📝
meta.json(+35 -18)📄 Description
What is this PR about?
New PR of [Template Name]
Checklist
Before submitting this PR, please make sure that:
Issues related (if applicable)
Close automatically the related issues using the keywords:
closes #ISSUE_NUMBERScreenshots or Videos
Greptile Summary
This PR adds a Verdaccio (private Node.js package registry) blueprint to the Dokploy templates collection. The template includes a
docker-compose.yml, atemplate.tomlwith a fully embedded Verdaccio config (via[[config.mounts]]), an SVG logo, and ameta.jsonentry. The overall approach and configuration are correct; however, thedocker-compose.ymlviolates two mandatory project conventions defined in AGENTS.md:portsused instead ofexpose: Dokploy handles all external routing; usingportsdirectly exposes port4873on the host rather than routing through Dokploy's managed reverse proxy.restartpolicy: The service does not definerestart: unless-stopped(orrestart: always), meaning the container will not automatically recover from crashes or host reboots.Both issues are explicitly prohibited/required by the project's Docker Compose conventions and must be fixed before this template can be safely deployed.
Confidence Score: 2/5
portsinstead ofexposebypasses Dokploy's routing system and exposes the service directly on the host, while the missingrestartpolicy means the service cannot recover automatically. Both must be fixed before deployment. The other files (meta.json, template.toml, and SVG) are correct.portswithexposeand addrestart: unless-stoppedLast reviewed commit:
fc72f73(3/5) Reply to the agent's comments like "Can you suggest a fix for this @greptileai?" or ask follow-up questions!
Context used:
dashboard- AGENTS.md (source)🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.