mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-05 21:24:22 +01:00
* 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
47 lines
724 B
JSON
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"
|
|
}
|