chore(n8n): add webhook url env variable

This commit is contained in:
Nicolas Meienberger 2023-12-29 16:19:01 +01:00
parent 42c25f084a
commit 57c0da67dc
2 changed files with 4 additions and 11 deletions

View File

@ -5,7 +5,7 @@
"exposable": true,
"port": 8094,
"id": "n8n",
"tipi_version": 25,
"tipi_version": 26,
"version": "0.237.0",
"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.",
@ -13,14 +13,6 @@
"author": "n8n.io",
"source": "https://github.com/n8n-io/n8n",
"website": "https://n8n.io/",
"form_fields": [
{
"type": "random",
"label": "Database password",
"min": 30,
"max": 30,
"env_variable": "DB_PASSWORD"
}
],
"form_fields": [],
"supported_architectures": ["arm64", "amd64"]
}

View File

@ -1,4 +1,4 @@
version: '3.7'
version: "3.7"
services:
n8n:
@ -12,6 +12,7 @@ services:
command: /bin/sh -c "sleep 5; n8n start"
environment:
- N8N_EDITOR_BASE_URL=${APP_PROTOCOL:-http}://${APP_DOMAIN}
- WEBHOOK_URL=${APP_PROTOCOL:-http}://${APP_DOMAIN}
networks:
- tipi_main_network
labels: