hassio-murmur/config.json

45 lines
1.1 KiB
JSON

{
"name": "murmur - the mumble server",
"url": "https://git.asperti.com/paspo/hassio-addons",
"image": "docker.asperti.com/paspo/hassio-murmur",
"version": "0.1.4",
"slug": "murmur",
"description": "murmur - the mumble server",
"startup": "services",
"boot": "auto",
"ports": {
"64738": 64738
},
"ports_description": {
"64738": "listening port"
},
"arch": [
"aarch64",
"amd64",
"armhf",
"i386"
],
"map": [ "ssl" ],
"options": {
"max_users": 10,
"channel_name": "my_channel",
"channel_description": "The coolest channel",
"enable_ban": true,
"ban_length": 3600,
"admin_password": "",
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"max_users": "int",
"channel_name": "str",
"channel_description": "str",
"enable_ban": "bool",
"ban_length": "int",
"admin_password": "str",
"ssl": "bool",
"certfile": "str",
"keyfile": "str"
}
}