You can connect to the database using PhpMyAdmin or MySQL client.
- username: dbuser
- password: dbpassword
You can connect to the database using PhpMyAdmin.
- Go to http://localhost:8003
- Connect to server: database
- Loging with the database credentials
From host:
mysql -h 127.0.0.1 -P 3307 -u dbuser -p --ssl-mode=DISABLED
From database container:
mysql -h 127.0.0.1 -P 3306 -u dbuser -p
From server container:
mysql -h database -P 3306 -u dbuser -p --ssl-mode=DISABLED