I tried installing docker image on azure but I get error running my application. I followed https://learn.microsoft.com/en-us/azure/container-instances/container-instances-quickstart
and executed below command to create a metabase docker image.
az container create --resource-group xxx --name metabase --image metabase/metabase --dns-name-label yyy --ports 80
This command was successful but my application won’t load when I tried to access my application through fqdn given by the above command. It returns connection timed out response.
Ps: posted this question on super user and yet posting it here too as I couldn't find metabase
tag in super user.
I am new to docker and azure so detail steps would be helpful
Thank you.
It works just fine in my tests, when you specify the required port 3000
instead of port 80. See example:
docker run -d -p 3000:3000 --name metabase metabase/metabase