I containerized my .NET Core REST API app with Docker, ran it locally and everything worked fine. However, now that I deployed my container to Azure (using Container Instance), my API endpoints are not responding anymore. All of my endpoints query from my SQL Server database which I think could be the problem since my server name is my home IP config.
I am at lost as to what to do to try to make my SQL Server work with my deployed app.
Do I create a SQL Server on Azure, then connect my local SQL Server to Azure, then configure my app to that hosted SQL Server instead? Or is there another way?
Thanks in advance.