Files
addons/dnsmasq/config.json
Pascal Vizeli f52e0d7a60 Update branch of add-ons with armv7 (#538)
* Update branch of add-ons with armv7

* update configurator

* Fix docker file

* Update docker files

* fix image

* Update

* certbot
2019-03-10 17:09:35 +01:00

36 lines
670 B
JSON

{
"name": "Dnsmasq",
"version": "1.2",
"slug": "dnsmasq",
"description": "A simple DNS server",
"url": "https://home-assistant.io/addons/dnsmasq/",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "system",
"boot": "auto",
"ports": {
"53/tcp": 53,
"53/udp": 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"
}