Mattl
Mattl

Reputation: 1618

Azure Docker Web App - Failed to update data for container settings

I'm trying to configure continuous deployment for my Web App in Azure so it deploys every time I push an updated container image to the Azure registry.

However, when I go to "Container Settings" and set "Continuous Deployment" to true and then hit save I get the following error:

"Failed to update data for container settings."

I'm not sure how to start debugging this error message to find out what the issue is.

Does anyone have any ideas?

Upvotes: 0

Views: 905

Answers (2)

kangasta
kangasta

Reputation: 782

I faced the same error message when trying to update the configuration of a multi-container app.

The Azure portal sends the update as a request to their management API and the JSON response to this request contains a more detailed error message. This might help with debugging. For example, in my case the configuration was too long and this was kind of communicated in the response that I was able to find through the network tab of my browsers developer tools.

Upvotes: 1

Mattl
Mattl

Reputation: 1618

This just worked after revisiting the portal after a couple of days. Must have needed a bit of bedding in...

Upvotes: 0

Related Questions