Files
addons/mosquitto/config.json
Pascal Vizeli 138fb15477 Update branche of addons (#137)
Add an optional extended description…
2017-06-30 08:20:44 +02:00

34 lines
709 B
JSON

{
"name": "Mosquitto broker",
"version": "0.8",
"slug": "mosquitto",
"description": "An Open Source MQTT broker",
"url": "https://home-assistant.io/addons/mosquitto/",
"startup": "before",
"boot": "auto",
"ports": {
"1883/tcp": 1883,
"8883/tcp": 8883
},
"map": ["ssl"],
"options": {
"plain": true,
"ssl": false,
"anonymous": true,
"logins": [],
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"plain": "bool",
"ssl": "bool",
"anonymous": "bool",
"logins": [
{"username": "str", "password": "str"}
],
"certfile": "str",
"keyfile": "str"
},
"image": "homeassistant/{arch}-addon-mosquitto"
}