mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-31 18:55:32 +01:00
* 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
36 lines
696 B
JSON
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"
|
|
}
|