mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-03 20:24:19 +01:00
* mariadb: Pin add-on to Alpine 3.11 * mariadb: Redirect MariaDB error log to add-on logs * mariadb: Remove grant and host options * mariadb: Add support for the mysql service * mariadb: Use a more secure default on install * mariadb: Skip DNS name resolving * mariadb: Improve integrity checks and recovery * mariadb: Small tweaks to shell scripts * mariadb: Tune MariaDB for lower memory usage * mariadb: Update documentation to match changes * mariadb: Update changelog, bump version 2.0 * mariadb: Fix log ouput redirect for non-local builds * Close port to world * mariadb: Fix issue with user permissions * mariadb: Ensure we are using a proper collation set * mariadb: Add upgrade process for internal mariadb system tables * mariadb: Change default username from hass to homeassistant * mariadb: Update changelog * mariadb: Update readme Co-authored-by: Pascal Vizeli <pascal.vizeli@syshack.ch>
32 lines
819 B
JSON
32 lines
819 B
JSON
{
|
|
"name": "MariaDB",
|
|
"version": "2.0",
|
|
"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",
|
|
"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",
|
|
"timeout": 20
|
|
}
|