Files
addons/dnsmasq/config.json
Pascal Vizeli a16006c9f1 Add flags for stage and advanced (#1108)
* Add advanced flag and stage

* flag more

* remove cec
2020-02-19 14:36:18 +01:00

37 lines
716 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"],
"advanced": true,
"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"
}