chore(n8n): add webhook url env variable
This commit is contained in:
parent
42c25f084a
commit
57c0da67dc
|
@ -5,7 +5,7 @@
|
||||||
"exposable": true,
|
"exposable": true,
|
||||||
"port": 8094,
|
"port": 8094,
|
||||||
"id": "n8n",
|
"id": "n8n",
|
||||||
"tipi_version": 25,
|
"tipi_version": 26,
|
||||||
"version": "0.237.0",
|
"version": "0.237.0",
|
||||||
"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.",
|
||||||
|
@ -13,14 +13,6 @@
|
||||||
"author": "n8n.io",
|
"author": "n8n.io",
|
||||||
"source": "https://github.com/n8n-io/n8n",
|
"source": "https://github.com/n8n-io/n8n",
|
||||||
"website": "https://n8n.io/",
|
"website": "https://n8n.io/",
|
||||||
"form_fields": [
|
"form_fields": [],
|
||||||
{
|
|
||||||
"type": "random",
|
|
||||||
"label": "Database password",
|
|
||||||
"min": 30,
|
|
||||||
"max": 30,
|
|
||||||
"env_variable": "DB_PASSWORD"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"supported_architectures": ["arm64", "amd64"]
|
"supported_architectures": ["arm64", "amd64"]
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
version: '3.7'
|
version: "3.7"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
n8n:
|
n8n:
|
||||||
|
@ -12,6 +12,7 @@ services:
|
||||||
command: /bin/sh -c "sleep 5; n8n start"
|
command: /bin/sh -c "sleep 5; n8n start"
|
||||||
environment:
|
environment:
|
||||||
- N8N_EDITOR_BASE_URL=${APP_PROTOCOL:-http}://${APP_DOMAIN}
|
- N8N_EDITOR_BASE_URL=${APP_PROTOCOL:-http}://${APP_DOMAIN}
|
||||||
|
- WEBHOOK_URL=${APP_PROTOCOL:-http}://${APP_DOMAIN}
|
||||||
networks:
|
networks:
|
||||||
- tipi_main_network
|
- tipi_main_network
|
||||||
labels:
|
labels:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user