mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-15 14:52:05 -05:00
[PR #928] [MERGED] feat(blueprint): add engram template #15258
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/928
Author: @danestves
Created: 6/19/2026
Status: ✅ Merged
Merged: 7/8/2026
Merged by: @Siumauricio
Base:
canary← Head:add-engram-template📝 Commits (4)
a29e4b4feat(blueprint): add engram template01f532dfix(engram): use static internal Postgres password in DSN5d90a07Merge remote-tracking branch 'origin/canary' into add-engram-template16eacb1fix: point domain at /dashboard — engram cloud serves no route at /📊 Changes
4 files changed (+74 additions, -0 deletions)
View changed files
➕
blueprints/engram/docker-compose.yml(+37 -0)➕
blueprints/engram/engram.png(+0 -0)➕
blueprints/engram/meta.json(+17 -0)➕
blueprints/engram/template.toml(+20 -0)📄 Description
What
Adds a blueprint for Engram — a self-hosted persistent-memory sync server ("Engram Cloud") for AI coding agents (Claude Code, Cursor, Codex, Gemini CLI, and anything else that speaks MCP).
Why
Engram gives AI agents memory that survives across sessions. The cloud server is the multi-project sync backend plus a web dashboard. This template makes it one-click deployable on Dokploy instead of hand-rolling Postgres + auth + the container.
Stack
ghcr.io/gentleman-programming/engram:1.16.3(official multi-arch image), runscloud serve, exposes8080(dashboard + API).postgres:16-alpinewith a persistent volume.Configuration
ENGRAM_CLOUD_TOKEN,ENGRAM_CLOUD_ADMIN, and a 64-charENGRAM_JWT_SECRET(engram refuses the dev default, so a real one is generated).ENGRAM_CLOUD_ALLOWED_PROJECTS=*— allow any project, access gated by the bearer token. Operators can narrow this to specific project names.ENGRAM_DATABASE_URL.Testing
Resolved the helpers to concrete values and booted the stack locally with Docker Compose:
[engram-cloud] listening on 0.0.0.0:8080/Starting Engram cloud server on port 8080, confirming the auth validation passes (token + allowlist + non-default JWT secret all accepted) and that it connected to Postgres using the generated DSN.GET /dashboard→303(dashboard route live), server responding over HTTP.node dedupe-and-sort-meta.jsruns clean (390 entries, sorted).Follows
AGENTS.md:version: "3.8", nocontainer_name/networks,exposeonly,restart: unless-stopped, persistent volume, and the primary service name matches the blueprint folder.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.