mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-26 00:05:59 +01:00
33 lines
794 B
JSON
33 lines
794 B
JSON
{
|
|
"name": "MariaDB",
|
|
"version": "0.1",
|
|
"slug": "mariadb",
|
|
"description": "An SQL database server",
|
|
"url": "https://home-assistant.io/addons/mariadb/",
|
|
"startup": "system",
|
|
"boot": "auto",
|
|
"ports": {
|
|
"3306/tcp": 3306
|
|
},
|
|
"options": {
|
|
"databases": ["homeassistant"],
|
|
"logins": [
|
|
{"username": "hass", "host": "%", "password": null}
|
|
],
|
|
"rights": [
|
|
{"username": "hass", "host": "%", "database": "homeassistant", "grant": "ALL PRIVILEGES ON"}
|
|
]
|
|
},
|
|
"schema": {
|
|
"databases": ["str"],
|
|
"logins": [
|
|
{"username": "str", "host": "str", "password": "str"}
|
|
],
|
|
"rights": [
|
|
{"username": "str", "host": "str", "database": "str", "grant": "str"}
|
|
]
|
|
},
|
|
"image": "homeassistant/{arch}-addon-mariadb",
|
|
"timeout": 20
|
|
}
|