Files
addons/dnsmasq/config.json
Franck Nijhof fc839e76c7 dnsmasq: Refactor (#591)
* dnsmasq: Rewrite add-on onto Bashio

* dnsmasq: Removes debug statement from run.sh

* dnsmasq: Formats config.json

* dnsmasq: Adds README to add-on repository

* dnsmasq: Bumps version to 1.3, updates CHANGELOG
2019-06-02 13:34:59 +02:00

47 lines
724 B
JSON

{
"name": "Dnsmasq",
"version": "1.3",
"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"
}