Files
addons/dnsmasq/config.json
Pascal Vizeli 6e86f1934a dnsmasq apparmor tweeks (#1864)
* dnsmasq apparmor tweeks

* Update apparmor.txt
2021-02-17 12:12:26 +01:00

47 lines
897 B
JSON

{
"name": "Dnsmasq",
"version": "1.4.4",
"slug": "dnsmasq",
"description": "A simple DNS server",
"url": "https://github.com/home-assistant/hassio-addons/tree/master/dnsmasq",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"advanced": true,
"startup": "system",
"init": false,
"ports": {
"53/tcp": 53,
"53/udp": 53
},
"options": {
"defaults": ["8.8.8.8", "8.8.4.4"],
"forwards": [],
"hosts": [],
"services": []
},
"schema": {
"defaults": ["str"],
"forwards": [
{
"domain": "str",
"server": "str"
}
],
"hosts": [
{
"host": "str",
"ip": "str"
}
],
"services": [
{
"srv": "str",
"host": "str",
"port": "str",
"priority": "int",
"weight": "int"
}
]
},
"image": "homeassistant/{arch}-addon-dnsmasq"
}