I have an azure app service, using the latest wordpress image from docker hub. The screenshot for the azure app service:

Then in the azure app service -> application setting, I added the following key/value pairs which will be used to connect Azure database for mysql:
- WORDPRESS_DB_HOST
- WORDPRESS_DB_NAME
- WORDPRESS_DB_PASSSWORD
- WORDPRESS_DB_USER
Inside my Azure database for mysql, I have enabled public access / allow public access from any azure service / also add my client ip and this ip range 0.0.0.0 - 255.255.255.255. I can access it from my client and create the database which will be used by azure app service. Screenshot like below:

in server parameters, I also turn off the require_secure_transport setting:

At last, I tried to launch the site, but it throws the error "Error establishing a database connection", screenshot below:

I'm new to wordpress / docker, and don't know how to fix this issue. I also reviewed some videos / docs, and didn't see any other configuration differences. Could you please guide me how to fix this issue? Thanks very much.
