mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-17 20:05:37 +01:00
* Update mariadb add-on to use Bashio #727 * Update log entries and loops * Update change log and version * Fixing database setup and some wording updates * Database check replaced with bashio based check
34 lines
852 B
JSON
34 lines
852 B
JSON
{
|
|
"name": "MariaDB",
|
|
"version": "1.3",
|
|
"slug": "mariadb",
|
|
"description": "An SQL database server",
|
|
"url": "https://home-assistant.io/addons/mariadb/",
|
|
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
|
|
"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
|
|
}
|