mirror of
https://github.com/Dokploy/templates.git
synced 2026-05-06 16:55:42 -05:00
[PR #752] feat: add Sim Studio template #3475
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/752
Author: @trfi
Created: 3/25/2026
Status: 🔄 Open
Base:
canary← Head:canary📝 Commits (1)
5f1c2dcfeat: add Sim Studio template📊 Changes
4 files changed (+146 additions, -18 deletions)
View changed files
➕
blueprints/simstudio/docker-compose.yml(+96 -0)➕
blueprints/simstudio/simstudio.svg(+1 -0)➕
blueprints/simstudio/template.toml(+30 -0)📝
meta.json(+19 -18)📄 Description
What is this PR about?
New template for Sim Studio — an open-source AI workflow builder for designing, simulating, and testing multi-agent pipelines with real-time collaboration.
Checklist
Before submitting this PR, please make sure that:
Issues related (if applicable)
N/A
Screenshots or Videos
Services included:
simstudio— main app (port 3000)realtime— WebSocket collaboration server (port 3002)migrations— one-shot init container (runs DB migrations)db— pgvector/pgvector:pg17 (Postgres with vector extension)All secrets (
BETTER_AUTH_SECRET,ENCRYPTION_KEY,INTERNAL_API_SECRET,POSTGRES_PASSWORD) are auto-generated by Dokploy on deploy.Greptile Summary
This PR adds a Sim Studio template — an open-source AI workflow builder with multi-agent support — comprising four services (
simstudio,realtime,migrations,db). The overall architecture is solid: properdepends_onconditions, healthchecks, a one-shot migration container, and auto-generated secrets viatemplate.toml. The apparent Strapi removal inmeta.jsonis benign — it deduplicates an entry that already existed twice in the base branch.However, two mandatory AGENTS.md conventions are violated that must be resolved before merging:
portsinstead ofexpose: Bothsimstudio(3000) andrealtime(3002) useports:— AGENTS.md explicitly forbids this and requiresexpose:so Dokploy's networking layer handles routing.version: "3.8": The top-level Compose version declaration is absent; all blueprints are required to include it.:latestimage tags (P2): All threeghcr.io/simstudioai/*images float on:latest, against the security guideline to pin to specific versions. Themeta.json"version": "latest"should be updated to match once a tag is pinned.Confidence Score: 2/5
portsvsexpose, missingversion: "3.8") that will cause deployment issues on Dokploy.exposeinstead ofports,version: "3.8") are both missing. These are flagged as CRITICAL in the guide and will prevent the template from working correctly in Dokploy's networking model. Once those two fixes are applied (plus optionally pinning image versions), the PR should be ready to merge.blueprints/simstudio/docker-compose.ymlneeds theports→exposechange and theversion: "3.8"header added.Reviews (1): Last reviewed commit: "feat: add Sim Studio template" | Re-trigger Greptile
(2/5) Greptile learns from your feedback when you react with thumbs up/down!
Context used:
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.