mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-22 14:25:44 +01:00
43 lines
910 B
JSON
43 lines
910 B
JSON
{
|
|
"name": "Mosquitto broker",
|
|
"version": "4",
|
|
"slug": "mosquitto",
|
|
"description": "An Open Source MQTT broker",
|
|
"url": "https://home-assistant.io/addons/mosquitto/",
|
|
"startup": "system",
|
|
"boot": "auto",
|
|
"map": ["ssl", "share"],
|
|
"discovery": ["mqtt"],
|
|
"services": ["mqtt:provide"],
|
|
"auth_api": true,
|
|
"ports": {
|
|
"1883/tcp": 1883,
|
|
"1884/tcp": 1884,
|
|
"8883/tcp": 8883,
|
|
"8884/tcp": 8884
|
|
},
|
|
"options": {
|
|
"logins": [],
|
|
"anonymous": false,
|
|
"customize": {
|
|
"active": false,
|
|
"folder": "mosquitto"
|
|
},
|
|
"certfile": "fullchain.pem",
|
|
"keyfile": "privkey.pem"
|
|
},
|
|
"schema": {
|
|
"logins": [
|
|
{"username": "str", "password": "str"}
|
|
],
|
|
"anonymous": "bool",
|
|
"customize": {
|
|
"active": "bool",
|
|
"folder": "str"
|
|
},
|
|
"certfile": "str",
|
|
"keyfile": "str"
|
|
},
|
|
"image": "homeassistant/{arch}-addon-mosquitto"
|
|
}
|