mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
feat: Add extensive collection of application blueprints with Docker Compose configurations
This commit is contained in:
18
blueprints/n8n/docker-compose.yml
Normal file
18
blueprints/n8n/docker-compose.yml
Normal file
@@ -0,0 +1,18 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
n8n:
|
||||
image: docker.n8n.io/n8nio/n8n:1.70.3
|
||||
restart: always
|
||||
environment:
|
||||
- N8N_HOST=${N8N_HOST}
|
||||
- N8N_PORT=${N8N_PORT}
|
||||
- N8N_PROTOCOL=http
|
||||
- NODE_ENV=production
|
||||
- WEBHOOK_URL=https://${N8N_HOST}/
|
||||
- GENERIC_TIMEZONE=${GENERIC_TIMEZONE}
|
||||
- N8N_SECURE_COOKIE=false
|
||||
volumes:
|
||||
- n8n_data:/home/node/.n8n
|
||||
|
||||
volumes:
|
||||
n8n_data:
|
||||
BIN
blueprints/n8n/n8n.png
Normal file
BIN
blueprints/n8n/n8n.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.4 KiB |
15
blueprints/n8n/template.yml
Normal file
15
blueprints/n8n/template.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
variables:
|
||||
main_domain: ${randomDomain}
|
||||
|
||||
config:
|
||||
domains:
|
||||
- serviceName: n8n
|
||||
port: 5678
|
||||
host: ${main_domain}
|
||||
|
||||
env:
|
||||
N8N_HOST: ${main_domain}
|
||||
N8N_PORT: "5678"
|
||||
GENERIC_TIMEZONE: "Europe/Berlin"
|
||||
|
||||
mounts: []
|
||||
Reference in New Issue
Block a user