Files
addons/dnsmasq/config.json
2017-05-25 00:31:18 +02:00

34 lines
653 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",
"host_network": true,
"options": {
"interface": "eth0",
"defaults": ["8.8.8.8", "8.8.4.4"],
"forwards": [],
"hosts": []
},
"schema": {
"interface": "str",
"defaults": ["str"],
"forwards": [
{
"domain": "str",
"server": "str"
}
],
"hosts": [
{
"host": "str",
"ip": "str"
}
]
},
"image": "homeassistant/{arch}-addon-dnsmasq"
}