@Bera, Aniruddha (GE Healthcare, consultant) In addition to the helpful answer shared by Anonymous, I wanted to share some further suggestions that might be helpful.
It seems like your Azure App Service is failing to start with the error message "Failed to establish a new connection". The error message indicates that the App Service is unable to connect to the container registry where your custom Docker image is stored.
This could be due to a few reasons such as incorrect registry path name, incorrect credentials, or the container registry is behind a virtual network using a private endpoint in an unsupported region.
To troubleshoot this issue, you can try the following steps:
- Check that the path name to your container registry is correct. For a registry
my-registry.io
and imagetest/image
with tag3.2
, a valid image path would bemy-registry.io/test/image:3.2
. You can refer to the registry path documentation for more information. - Ensure that you have provided the correct credentials for the private registry you're trying to pull the image from.
- If the container registry is behind a virtual network, ensure that it is using a private endpoint in a supported region. You can refer to the list of supported regions for more information.