Bot Updating README from template

This commit is contained in:
LinuxServer-CI 2018-11-05 14:41:14 +00:00
parent 6618eedc8f
commit 53add3f3db

View File

@ -140,7 +140,7 @@ Once the MariaDB container is deployed, you can enter the following commands int
from shell: mysql -u root -p
CREATE DATABASE bookstackapp;
GRANT USAGE ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypassword';
GRANT ALL privileges ON 'bookstackapp'.* TO 'myuser'@localhost;
GRANT ALL privileges ON `bookstackapp`.* TO 'myuser'@%;
FLUSH PRIVILEGES;
```