Files
addons/dnsmasq/config.json
Franck Nijhof 4fd5cf5da8 dnsmasq: Collection of small improvements (#899)
* dnsmasq: Prettier YAML & JSON files

* dnsmasq: Update add-on URL

* dnsmasq: Pin add-on base images

* dnsmasq: Move data files into data folder

* dnsmasq: Tweaks documentation
2019-12-18 13:55:30 +01:00

36 lines
696 B
JSON

{
"name": "Dnsmasq",
"version": "1.3",
"slug": "dnsmasq",
"description": "A simple DNS server",
"url": "https://github.com/home-assistant/hassio-addons/tree/master/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"
}