Files
addons/mosquitto/config.json
Pascal Vizeli f52e0d7a60 Update branch of add-ons with armv7 (#538)
* Update branch of add-ons with armv7

* update configurator

* Fix docker file

* Update docker files

* fix image

* Update

* certbot
2019-03-10 17:09:35 +01:00

44 lines
970 B
JSON

{
"name": "Mosquitto broker",
"version": "4.1",
"slug": "mosquitto",
"description": "An Open Source MQTT broker",
"url": "https://home-assistant.io/addons/mosquitto/",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"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"
}