Deploying on Azure "Docker"

I was trying to deploy Squidex on Azure using docker followingthis method. Everything when well until I wanted to login to the deployed app. My email and passwords set in the environment variables seem not to be accessible cause I can’t login using those credentials.
I set the environment variables : { "name": "IDENTITY__ADMINEMAIL", "value": "[ADD YOUR VALUE HERE]", "slotSetting": false }, { "name": "IDENTITY__ADMINPASSWORD", "value": "[ADD YOUR VALUE HERE]", "slotSetting": false },

but this seems not to work.
I restarted the docker container after setting it.
I used this container definition to create my container

Have you checked the logs? Perhaps your password is not secure enough.

Awesom thanks, that was the problem