From be29468164a9cdb7e8993657aac5a542b1d74854 Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Mon, 4 Mar 2024 08:57:29 +0100 Subject: [PATCH] chore: bump n8n to 1.30.1 --- apps/n8n-1/config.json | 4 ++-- apps/n8n-1/docker-compose.yml | 10 +++++++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/apps/n8n-1/config.json b/apps/n8n-1/config.json index 8ff88958..a3944987 100644 --- a/apps/n8n-1/config.json +++ b/apps/n8n-1/config.json @@ -5,8 +5,8 @@ "exposable": true, "port": 8215, "id": "n8n-1", - "tipi_version": 1, - "version": "1.27.2", + "tipi_version": 2, + "version": "1.30.1", "categories": ["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.", "short_desc": "Workflow Automation Tool. Alternative to Zapier", diff --git a/apps/n8n-1/docker-compose.yml b/apps/n8n-1/docker-compose.yml index e001ff10..d523f0cd 100644 --- a/apps/n8n-1/docker-compose.yml +++ b/apps/n8n-1/docker-compose.yml @@ -1,9 +1,9 @@ -version: '3.7' +version: "3.7" services: n8n-1: container_name: n8n-1 - image: n8nio/n8n:1.27.2 + image: n8nio/n8n:1.30.1 restart: unless-stopped ports: - ${APP_PORT}:5678 @@ -67,7 +67,11 @@ services: - ${APP_DATA_DIR}/data/postgres:/var/lib/postgresql/data - ${APP_DATA_DIR}/data/init-data.sh:/docker-entrypoint-initdb.d/init-data.sh healthcheck: - test: ['CMD-SHELL', 'pg_isready -h localhost -U $$POSTGRES_USER -d $$POSTGRES_DB'] + test: + [ + "CMD-SHELL", + "pg_isready -h localhost -U $$POSTGRES_USER -d $$POSTGRES_DB", + ] interval: 5s timeout: 5s retries: 10