Container deployment in Azure

When I am deploying the Azure web app, Im getting errors stating the webapp start up is timing out. In looking at it, could I get support from the Survey Solutions team as this looks to be an issue with the image being pulled.

025-05-15T03:52:08.337Z INFO - Waiting for response to warmup request for container XXXXXXXXXXXXXXXX_0_b52e82dd. Elapsed time = 227.9921737 sec
2025-05-15T03:52:10.850Z ERROR - Container XXXXXXXXXXXX_0_b52e82dd for site XXXXXXXXXXXXXXXXXX did not start within expected time limit. Elapsed time = 230.5050474 sec
2025-05-15T03:52:10.950Z ERROR - Container XXXXXXXXXXXXXX_0_b52e82dd didn’t respond to HTTP pings on port: 80. Failing site start. See container logs for debugging.
2025-05-15T03:52:11.110Z INFO - Stopping site XXXXXXXXXXX because it failed during startup.

Do you have any container logs?

Were the logs helpful in determining the problem? Is it solved now? Can you summarize the solution you’ve applied?

Hi Team, the logs didnt show anything unfortunately and so I had to stop the deployment at this stage

for me I could finally get it work.
the documentation needs to be updated.

  • it’s missing the DB creation command. ( az postgres flexible-server db create )

regarding the connection string:

az webapp config appsettings set --resource-group $RG --name $WEBAPPNAME --settings HQ_ConnectionStrings__DefaultConnection=“Server=${PGSERVER}.postgres.database.azure.com;Database=‘YourDataBase’;Port=5432;User Id=postgres@${PGSERVER};Password=${PGPASS};Ssl Mode=Require;”

should be replaced by :

az webapp config appsettings set --resource-group $RG --name $WEBAPPNAME --settings HQ_ConnectionStrings__DefaultConnection=Server=${PGSERVER}.postgres.database.azure.com;Database=SurveySolutions;Port=5432;User Id=postgres;Password=${PGPASS};Ssl Mode=Require;

regards,