chore: bump n8n to 1.30.1
This commit is contained in:
parent
fbb619b01a
commit
be29468164
|
@ -5,8 +5,8 @@
|
||||||
"exposable": true,
|
"exposable": true,
|
||||||
"port": 8215,
|
"port": 8215,
|
||||||
"id": "n8n-1",
|
"id": "n8n-1",
|
||||||
"tipi_version": 1,
|
"tipi_version": 2,
|
||||||
"version": "1.27.2",
|
"version": "1.30.1",
|
||||||
"categories": ["automation"],
|
"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.",
|
"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",
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
version: '3.7'
|
version: "3.7"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
n8n-1:
|
n8n-1:
|
||||||
container_name: n8n-1
|
container_name: n8n-1
|
||||||
image: n8nio/n8n:1.27.2
|
image: n8nio/n8n:1.30.1
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- ${APP_PORT}:5678
|
- ${APP_PORT}:5678
|
||||||
|
@ -67,7 +67,11 @@ services:
|
||||||
- ${APP_DATA_DIR}/data/postgres:/var/lib/postgresql/data
|
- ${APP_DATA_DIR}/data/postgres:/var/lib/postgresql/data
|
||||||
- ${APP_DATA_DIR}/data/init-data.sh:/docker-entrypoint-initdb.d/init-data.sh
|
- ${APP_DATA_DIR}/data/init-data.sh:/docker-entrypoint-initdb.d/init-data.sh
|
||||||
healthcheck:
|
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
|
interval: 5s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 10
|
retries: 10
|
||||||
|
|
Loading…
Reference in New Issue
Block a user