mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-24 15:25:43 +01:00
* startup dhcp * startup dnsmasq * startup duckdns * startup mariadb * startup nginx * Update config.json
34 lines
646 B
JSON
34 lines
646 B
JSON
{
|
|
"name": "Dnsmasq",
|
|
"version": "0.5",
|
|
"slug": "dnsmasq",
|
|
"description": "A simple dns server with benefits",
|
|
"url": "https://home-assistant.io/addons/dnsmasq/",
|
|
"startup": "system",
|
|
"boot": "auto",
|
|
"host_network": true,
|
|
"options": {
|
|
"defaults": ["8.8.8.8", "8.8.4.4"],
|
|
"forwards": [],
|
|
"hosts": [],
|
|
"interface": "eth0"
|
|
},
|
|
"schema": {
|
|
"defaults": ["str"],
|
|
"forwards": [
|
|
{
|
|
"domain": "str",
|
|
"server": "str"
|
|
}
|
|
],
|
|
"hosts": [
|
|
{
|
|
"host": "str",
|
|
"ip": "str"
|
|
}
|
|
],
|
|
"interface": "str"
|
|
},
|
|
"image": "homeassistant/{arch}-addon-dnsmasq"
|
|
}
|