Added n8n add-on

This commit is contained in:
Dmitriy Biloshytskiy
2022-03-22 09:44:36 +02:00
commit ecf888262c
8 changed files with 428 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
{
"name": "Hass n8n",
"version": "0.0.2",
"slug": "hass-n8n",
"description": "Self host your n8n instance",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "application",
"boot": "auto",
"icon": "ico.png",
"logo": "ico.png",
"webui": "[PROTO:protocol]://[HOST]:[PORT:5678]/",
"map": ["ssl"],
"apparmor": true,
"ports": {
"5678/tcp": 5678
},
"ports_description": {
"5678/tcp": "n8n Web interface"
},
"options": {
"auth": false,
"auth_username": "",
"auth_password": "",
"timezone": "Europe/Berlin",
"protocol": "http",
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"auth": "bool",
"auth_username": "str?",
"auth_password": "str?",
"timezone": "str",
"protocol": "str",
"certfile": "str",
"keyfile": "str"
}
}