-
Notifications
You must be signed in to change notification settings - Fork 349
feat: Add n8n and Ghost Templates for Dokploy Dashboard #763
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,17 @@ | ||||||
| version: '3.8' | ||||||
| services: | ||||||
| ghost: | ||||||
| image: ghost:5-alpine | ||||||
| restart: always | ||||||
| ports: | ||||||
| - 2368:2368 | ||||||
| environment: | ||||||
| database__client: sqlite3 | ||||||
| database__connection__filename: content/data/ghost.db | ||||||
| url: http://localhost:2368 | ||||||
| NODE_ENV: production | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
And the corresponding |
||||||
| volumes: | ||||||
| - ghost_data:/var/lib/ghost/content | ||||||
|
|
||||||
| volumes: | ||||||
| ghost_data: | ||||||
|
Comment on lines
+1
to
+17
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This file is placed at The new files should either be discarded (the template already exists) or replace/update |
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| { | ||
| "name": "Ghost", | ||
| "description": "Turn your audience into a business. Publishing, newsletters, subscriptions and memberships.", | ||
| "version": "5.0", | ||
| "links": { | ||
| "repository": "https://github.com/TryGhost/Ghost", | ||
| "website": "https://ghost.org/" | ||
| }, | ||
| "tags": ["cms", "blog", "publishing"] | ||
| } |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,19 @@ | ||||||
| version: '3.8' | ||||||
| services: | ||||||
| n8n: | ||||||
| image: n8nio/n8n:latest | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The existing
Suggested change
Context Used: AGENTS.md (source) |
||||||
| restart: always | ||||||
| ports: | ||||||
| - "5678:5678" | ||||||
| environment: | ||||||
| - N8N_HOST=localhost | ||||||
| - N8N_PORT=5678 | ||||||
| - N8N_PROTOCOL=http | ||||||
| - NODE_ENV=production | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||
| - WEBHOOK_URL=http://localhost:5678/ | ||||||
| - GENERIC_TIMEZONE=Europe/Berlin | ||||||
| volumes: | ||||||
| - n8n_data:/home/node/.n8n | ||||||
|
|
||||||
| volumes: | ||||||
| n8n_data: | ||||||
|
Comment on lines
+1
to
+19
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Same problem as the Ghost template: this file is placed at |
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| { | ||
| "name": "n8n", | ||
| "description": "Free and open fair-code licensed node based Workflow Automation Tool. Easily automate tasks across different services.", | ||
| "version": "latest", | ||
| "links": { | ||
| "repository": "https://github.com/n8n-io/n8n", | ||
| "website": "https://n8n.io/" | ||
| }, | ||
| "tags": ["automation", "workflow", "low-code"] | ||
| } | ||
|
Comment on lines
+1
to
+10
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Dokploy blueprints use The same applies to Context Used: AGENTS.md (source) |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
portsmapping violates project conventionsAGENTS.mdexplicitly states: "NEVER include:ports(useexposeonly),container_name,networks(Dokploy handles isolation)". Dokploy manages port routing internally; exposing2368:2368on the host conflicts with that mechanism and may cause port collisions across deployments.The same issue exists in
n8n/docker-compose.ymlat line 8.Context Used: AGENTS.md (source)