mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-05 13:14:22 +01:00
35 lines
633 B
JSON
35 lines
633 B
JSON
{
|
|
"name": "Dnsmasq server",
|
|
"version": "0.1",
|
|
"slug": "dnsmasq",
|
|
"description": "A simple dns server with benefits",
|
|
"url": "https://home-assistant.io/addons/dnsmasq/",
|
|
"startup": "before",
|
|
"boot": "auto",
|
|
"ports": {
|
|
"53/udp": 53,
|
|
"53/tcp": 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"
|
|
}
|