Files
addons/dnsmasq/config.json
2017-05-25 00:57:43 +02:00

35 lines
633 B
JSON

{
"name": "Dnsmasq server",
"version": "0.1",
"slug": "dnsmasq",
"description": "A simple dns server with benefits",
"url": "https://home-assistant.io/addons/dnsmasq/",
"startup": "before",
"boot": "auto",
"ports": {
"53/udp": 53,
"53/tcp": 53
},
"options": {
"defaults": ["8.8.8.8", "8.8.4.4"],
"forwards": [],
"hosts": []
},
"schema": {
"defaults": ["str"],
"forwards": [
{
"domain": "str",
"server": "str"
}
],
"hosts": [
{
"host": "str",
"ip": "str"
}
]
},
"image": "homeassistant/{arch}-addon-dnsmasq"
}