Files
addons/dnsmasq/config.json
Pascal Vizeli 50b2ba946c Update addons with multibe tasks (#129) (#130)
Update addons with multibe tasks
2017-06-27 15:12:26 +02:00

34 lines
646 B
JSON

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