Files
addons/dnsmasq/config.json
Pascal Vizeli ce3ff8a91b Cleanup startup logo (#150)
* startup dhcp

* startup dnsmasq

* startup duckdns

* startup mariadb

* startup nginx

* Update config.json
2017-07-23 17:11:59 +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": "system",
"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"
}