chore: bump n8n to 1.30.1

This commit is contained in:
Nicolas Meienberger 2024-03-04 08:57:29 +01:00
parent fbb619b01a
commit be29468164
2 changed files with 9 additions and 5 deletions

View File

@ -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",

View File

@ -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