Unable to start container. Error message: Modify Compute System failed

pragadeesh.raju 41 Reputation points
2020-05-11T10:32:42.82+00:00

Hello,

I'm trying to run a nodejs app on App services (windows containers).

We are getting the below error.

11/05/2020 10:18:55.908 ERROR - Site: sample - Unable to start container. Error message: Modify Compute System failed.

im using FROM mcr.microsoft.com/windows/servercore:ltsc2019 as a base image.

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
6,867 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Joaquin Vano 76 Reputation points Microsoft Employee
    2020-05-11T21:11:54.497+00:00

    Using mcr.microsoft.com/windows/servercore:ltsc2019 as the base image it is fine! Also you might want to consider using mcr.microsoft.com/windows/nanoserver:1809 since your application is nodejs.

    Regarding the issue, the call to modify the compute system (the container) is when we attach the network adapter to it. I don't know why it failed but I recommend to open a support ticket, so we can investigate more about this problem.


  2. pragadeesh.raju 41 Reputation points
    2020-05-27T17:34:34.37+00:00

    the issue was with the node version i was using.

    Windows container webapp doesnt have support for node 7 but linux version does.

    0 comments No comments