Merge branch 'nsvrana-patch-2'

This commit is contained in:
Nicolas Meienberger 2023-03-28 23:11:40 +02:00
commit c610db73ea
2 changed files with 6 additions and 10 deletions

View File

@ -5,11 +5,9 @@
"exposable": true, "exposable": true,
"port": 8094, "port": 8094,
"id": "n8n", "id": "n8n",
"tipi_version": 10, "tipi_version": 11,
"version": "0.215.2", "version": "0.221.2",
"categories": [ "categories": ["automation"],
"automation"
],
"description": "n8n is an extendable workflow automation tool. With a fair-code distribution model, n8n will always have visible source code, be available to self-host, and allow you to add your own custom functions, logic and apps. n8n's node-based approach makes it highly versatile, enabling you to connect anything to everything.", "description": "n8n is an extendable workflow automation tool. With a fair-code distribution model, n8n will always have visible source code, be available to self-host, and allow you to add your own custom functions, logic and apps. n8n's node-based approach makes it highly versatile, enabling you to connect anything to everything.",
"short_desc": "Workflow Automation Tool. Alternative to Zapier", "short_desc": "Workflow Automation Tool. Alternative to Zapier",
"author": "n8n.io", "author": "n8n.io",

View File

@ -1,9 +1,9 @@
version: "3.7" version: '3.7'
services: services:
n8n: n8n:
container_name: n8n container_name: n8n
image: n8nio/n8n:0.215.2 image: n8nio/n8n:0.221.2
restart: unless-stopped restart: unless-stopped
ports: ports:
- ${APP_PORT}:5678 - ${APP_PORT}:5678
@ -28,7 +28,7 @@ services:
traefik.http.routers.n8n.service: n8n traefik.http.routers.n8n.service: n8n
traefik.http.routers.n8n.tls.certresolver: myresolver traefik.http.routers.n8n.tls.certresolver: myresolver
traefik.http.services.n8n.loadbalancer.server.port: 5678 traefik.http.services.n8n.loadbalancer.server.port: 5678
db-n8n: db-n8n:
container_name: db-n8n container_name: db-n8n
image: postgres:14.2 image: postgres:14.2
@ -41,5 +41,3 @@ services:
- POSTGRES_DB=n8n - POSTGRES_DB=n8n
networks: networks:
- tipi_main_network - tipi_main_network