mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-31 18:55:32 +01:00
54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"name": "Mosquitto broker",
|
|
"version": "6.0.1",
|
|
"slug": "mosquitto",
|
|
"description": "An Open Source MQTT broker",
|
|
"url": "https://github.com/home-assistant/hassio-addons/tree/master/mosquitto",
|
|
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
|
|
"startup": "system",
|
|
"map": ["ssl", "share"],
|
|
"discovery": ["mqtt"],
|
|
"services": ["mqtt:provide"],
|
|
"watchdog": "tcp://[HOST]:1883",
|
|
"auth_api": true,
|
|
"ports": {
|
|
"1883/tcp": 1883,
|
|
"1884/tcp": 1884,
|
|
"8883/tcp": 8883,
|
|
"8884/tcp": 8884
|
|
},
|
|
"ports_description": {
|
|
"1883/tcp": "Normal MQTT",
|
|
"1884/tcp": "MQTT over WebSocket",
|
|
"8883/tcp": "Normal MQTT with SSL",
|
|
"8884/tcp": "MQTT over WebSocket with SSL"
|
|
},
|
|
"options": {
|
|
"logins": [],
|
|
"customize": {
|
|
"active": false,
|
|
"folder": "mosquitto"
|
|
},
|
|
"certfile": "fullchain.pem",
|
|
"keyfile": "privkey.pem",
|
|
"require_certificate": false
|
|
},
|
|
"schema": {
|
|
"logins": [
|
|
{
|
|
"username": "str",
|
|
"password": "password"
|
|
}
|
|
],
|
|
"customize": {
|
|
"active": "bool",
|
|
"folder": "str"
|
|
},
|
|
"cafile": "str?",
|
|
"certfile": "str",
|
|
"keyfile": "str",
|
|
"require_certificate": "bool"
|
|
},
|
|
"image": "homeassistant/{arch}-addon-mosquitto"
|
|
}
|