I'm using laravel sail and trying to create another database for my Laravel project which required to use multiple databases connections, I've tried to create from user root with empty password and sail with password password but go access denied.
tried command line to run
docker-compose exec -u 0 "mariadb" mysql -usail -ppassword -e 'create database databaseName;'
but also got access denied.
