Accessing Mariadb from Host Powershell Terminal - ERROR 1045 (28000):

I’m able to access mariadb from vs code terminal using “bench --site <mysite.localhost> mariadb”. However, I get error message when I use same command in my host system Powershell terminal after successfully starting login into the docker container with the following commands:

docker-compose -f ..devcontainer\docker-compose.yml up -d
docker exec -e “TERM=xterm-256color” -w /workspace/development -it devcontainer-frappe-1 bash

Error msg “ERROR 1045 (28000): Access denied for user ‘_8167c76cf06ecb8a’@‘172.19.0.6’ (using password: YES)”

How can I clear this error and access mariadb (inside container) from host Powershell terminal (without using vs code)?