Questions tagged [azure-web-app-for-containers]

Use this tag for questions related to Azure Web App for Containers, which Easily deploy and run containerized web apps that scale with your business

  • Easily deploy and run containerized applications that scale with your business
  • Use a fully-managed platform to perform infrastructure maintenance
  • Take advantage of built-in auto scaling and load balancing
  • Streamline CI/CD with Docker Hub, Azure Container Registry, and GitHub

Useful Links:

  1. Web app for Containers
  2. Documentation
91 questions
28
votes
6 answers

Where can I find docker container logs for Azure App Service

I do have a Docker container running a .net core 2 app. The logging is configured using this code in Program.cs public static IWebHostBuilder CreateWebHostBuilder(string[] args) => WebHost.CreateDefaultBuilder(args) …
17
votes
1 answer

Increase startup timeout for Azure WebApp for Containers

We run Java Spring Boot app in a Docker on Azure WebApp for Containers. Single B1 instance is enough for the app to run, however Spring Boot is pretty slow at startup and might take over 240 seconds for the app to start. As the result Azure WebApp…
7
votes
2 answers

Azure App Service Deploy Release (Azure DevOps) overwrites the Multi-Container Docker Compose (Preview) settings in Azure Portal

I have a multi-container app running with App Service - Web App for Containers. It all works fine as long as the Docker Compose (Preview) configuration is provided under the Container Settings tab. Currently, I am using Azure DevOps to create builds…
5
votes
1 answer

Azure WebApps for Containers and AppSettings/Environment Variables

I have a web app for containers running linux. Im running a docker container. It all works but I wanted to add an environment variable as follows: docker run -e my_app_setting_var=theValue The documentation says that app setting will be…
RuSs
  • 1,725
  • 1
  • 29
  • 47
5
votes
1 answer

No route registered for '/docker/hook'

I'm creating an Azure AppService based on a Docker image. The image is in Docker public registry, so I want the service to 'know' when there's a new version of the image (same tag). I thought the WebHook under Continuous Deployment was to achieve…
sebagomez
  • 9,501
  • 7
  • 51
  • 89
4
votes
2 answers

Azure Container Registry in Azure Web App for Containers across subscriptions

I'm currently trying to set up an Azure Web App for Containers, linking it to a Azure Container Registry that lives inside a different subscription. That's why my initial thought was to use the Private Registrytab inside the Web apps Container…
4
votes
1 answer

azure webapp for container error trying to mount blob storage

I am working on dockrized app which is deployed in azure with app service "webApp for containers" i am trying to link a blob storage account to my app i already created storage account and linked it to the my app at "path mappings" tab. but i…
3
votes
0 answers

Azure WebApp Continuous Deployment Does Not Start from Container Registry

I have an Azure webapp that is configured for continuous deployment. This webapp is connected to a Container Registry. It seems that sometimes, when I push an updated tag to the registry, it deploys within a few minutes. As I write this, I have been…
3
votes
1 answer

mount azure file share to web app for linux containers with docker-compose

I am trying to mount an azure file share to a Web App for Containers (linux) service. This is a .net Core 3 web api app with an angular front end. The app container runs perfectly locally when I mount a local drive to load the exact same files as…
3
votes
1 answer

Azure DevOps CI with Web Apps for Containers

I'm struggling to set up a CI process for a web application in Azure. I'm used to deploying built code directly into Web Apps in Azure but decided to use docker this time. In the build pipeline, I build the docker images and push them to an Azure…
3
votes
1 answer

Mounting Mongodb volume to Azure files in Azure Web App for Containers

I have an app that runs as a docker container, the app connects to another container which is Mongodb, I want to mount the mongodb volume data/db to Azure share files. I am using docker compose file to define my containers. Assuming that I already…
3
votes
1 answer

Azure web app container and docker commands

I'm using the Azure resource "Web app for containers" with a Linux docker image. I would like to use docker commands such as "docker inspect" but I'm not sure how this is possible. Via the Kudo interface this doesn't seem possible. I cannot even get…
Mr Davies
  • 569
  • 6
  • 16
3
votes
1 answer

SSH into scaled out Azure app service for container

How to get access to the specific instance of the scaled out to N instances Azure web app running a Linux container? Portal allows to SSH into one of the existing instances but never tells which one you are in.
3
votes
2 answers

Unable to delete files in shared filesystem

During a deployment of a Linux App for Containers today, the app started failing and never came up. Investigating the logs in Kudu, I could see the application was failing to run because during the installation of dependencies, the program would…
2
votes
1 answer

Is it possible to use OpenGL in Azure App Service Linux?

We are building an ASP.NET API running with .NET 5 that uses SkiaSharp to dynamically create and return images. We've noticed that using the GPU has a dramatic increase in performance. We know that in order to use the GPU we need an OpenGL Context…
1
2 3 4 5 6 7