mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-04 04:34:19 +01:00
* New Supervisor Hardware * Update more changelogs * fix version * Fix boot * fix application
32 lines
820 B
JSON
32 lines
820 B
JSON
{
|
|
"name": "MariaDB",
|
|
"version": "2.2.1",
|
|
"slug": "mariadb",
|
|
"description": "An SQL database server",
|
|
"url": "https://github.com/home-assistant/hassio-addons/tree/master/mariadb",
|
|
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
|
|
"startup": "system",
|
|
"init": false,
|
|
"timeout": 20,
|
|
"services": ["mysql:provide"],
|
|
"ports": {
|
|
"3306/tcp": null
|
|
},
|
|
"options": {
|
|
"databases": ["homeassistant"],
|
|
"logins": [{ "username": "homeassistant", "password": null }],
|
|
"rights": [
|
|
{
|
|
"username": "homeassistant",
|
|
"database": "homeassistant"
|
|
}
|
|
]
|
|
},
|
|
"schema": {
|
|
"databases": ["str"],
|
|
"logins": [{ "username": "str", "password": "str" }],
|
|
"rights": [{ "username": "str", "database": "str" }]
|
|
},
|
|
"image": "homeassistant/{arch}-addon-mariadb"
|
|
}
|