mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-17 20:05:37 +01:00
* Don't delete the mariadb.sys yser Since 10.4.13 `mysql.user` (and probably others) have a new definer `mariadb.sys` instead of `mysql.sys` that should be added to the list of users which are retained. The Docker library has fixed their bootstrap code in https://github.com/docker-library/mariadb/pull/306 - this change applies the same fix here. * Bump version * Update CHANGELOG.md
33 lines
838 B
JSON
33 lines
838 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",
|
|
"boot": "auto",
|
|
"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"
|
|
}
|