mirror of
https://github.com/linuxserver/docker-bookstack.git
synced 2026-02-20 02:30:30 +08:00
Merge pull request #23 from SirNavith/application-setup-command-fix
fix SQL command syntax in Application Setup command
This commit is contained in:
commit
df258f8a32
@ -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'@%;
|
||||
GRANT ALL privileges ON `bookstackapp`.* TO 'myuser'@'%';
|
||||
FLUSH PRIVILEGES;
|
||||
```
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user