Skip to content

Commit 18c209a

Browse files
authored
Update mariadb.markdown
1 parent 75f8081 commit 18c209a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/_addons/mariadb.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@ sharing: true
99
footer: true
1010
---
1111

12-
Set up a [mariadb](https://mariadb.org/) SQL server. It support multible database, users and permission.
12+
Set up a [mariadb](https://mariadb.org/) SQL server. It support multible database, users and permission. If you want only connect from inside use `172.17.0.1` as host address.
1313

1414
```json
1515
{
1616
"databases": ["homeassistant"],
1717
"logins": [
1818
{
1919
"username": "hass",
20-
"host": "localhost",
20+
"host": "172.17.0.1",
2121
"password": null
2222
}
2323
],
2424
"rights": [
2525
{
2626
"username": "hass",
27-
"host": "localhost",
27+
"host": "172.17.0.1",
2828
"database": "homeassistant",
2929
"grant": "ALL PRIVILEGES ON"
3030
}

0 commit comments

Comments
 (0)