...
Code Block |
---|
docker-compose up -d |
...
d |
In a web browser you can now access phpMyAdmin: http://localhost:8081
Login as root user. Login information as defined in the docker-compose.yml file.
...
Change the database user privileges
Info |
---|
If you setup a database user, please make sure to grant all privileges to that user. |
Use phpMyAdmin (need to be logged in as root user) or login with the terminal via mysql
mysql> GRANT ALL PRIVILEGES on *.* TO 'dbuser'@'localhost';
...