Skip to main content
Filter by
Sorted by
Tagged with
-3 votes
0 answers
17 views

I am trying to run a container image in Azure Container Apps which I expect to be able to use the sudo command. This image is to be a self-hosted GitHub Actions Runner, where some public actions ...
Tom Hyde's user avatar
-1 votes
0 answers
42 views

I'm looking for help to suppress very annoying logging - something I am not getting about configuration. In ACA Log stream I keep seeing these log entries: 2025-12-17T15:54:39.257462600Z 2025-12-17 15:...
Andrey's user avatar
  • 478
0 votes
0 answers
84 views

I’m running an Azure Functions queue-triggered app hosted as a container inside Azure Container Apps. The function is built with .NET 10 and scaled using KEDA scale rules defined in Bicep. I’m ...
j.arap's user avatar
  • 115
Advice
1 vote
0 replies
38 views

I am trying to deploy some services onto Azure Container Apps. I set up the environment as Internal, and within my own VNet/subnet. Let's say I have 2 services in that environment that is ...
Someone's user avatar
  • 26
0 votes
1 answer
78 views

I am developing a console application which will run as an Azure Container App. How do I write application logs such that they can be reviewed and monitored using Azure Monitor? I have searched for ...
joki's user avatar
  • 1
0 votes
1 answer
65 views

To give context, I am using Azure Static Web App linked to GitHub, Azure Container App linked to Docker Hub & have Azure SQL database along with SQL Server setup. This is my first attempt in ...
Miyazaki Ahmad's user avatar
1 vote
3 answers
241 views

I recently created a new Aspire project and I'm deploying it to Azure using the Azure DevOps Pipelines. My goal is to run the pipelines whenever a trigger occurs, generate the infrastructure, ...
Alexander Vestergaard Eriksen's user avatar
0 votes
1 answer
48 views

I’ve set up an Azure Container Apps Job that is triggered by an Azure Service Bus queue. The job runs successfully each time a message is pushed to the queue, however the message is not removed from ...
the programmer's user avatar
-1 votes
1 answer
87 views

I’m using .NET Aspire to orchestrate my services, and everything is deployed to Azure Container Apps. By default for replication, Container Apps seem to use HTTP scaler with a concurrency target of 10 ...
Markiian Hoinets's user avatar
0 votes
0 answers
59 views

I am trying to use Azure Container Apps native Functions (announced earlier this year) to run some R code in response to messages on a Service Bus queue. I have a working trigger but it is not making ...
Phil's user avatar
  • 73
0 votes
0 answers
32 views

I have deployed a Function App over a Container App using the kind=functionapp property as documentation suggests. The Function App (typescript) contains only HTTP triggered functions. The Container ...
Krusty's user avatar
  • 1,203
1 vote
1 answer
89 views

I have a piece of code deployed in Azure Container Apps that primarily copies the file from the staging Azure blob storage to the final Azure blob storage and computes the SHA256 hash. However, I have ...
Jana's user avatar
  • 151
0 votes
1 answer
62 views

I have an Azure App Service, which is accessible via HTTP using it's .azurewebsite.net domain name. Lots of other applications are configured to call REST endpoints within this app service. For ...
Dave B 84's user avatar
  • 638
0 votes
0 answers
60 views

I have a REST API app developed with Java Spring Boot. I am trying to deploy it to Azure Container Apps (ACA) with the following standard web app architecture: web browser -443-> Apache2 container -...
Richard Scrivener's user avatar
-1 votes
1 answer
129 views

I'm deploying resources in azure using bicep. The deployment process complete successfully without error, However, the container is not working. In container app log stream (application) I will get ...
Sorawit Tonpitak's user avatar
0 votes
0 answers
222 views

I'm deploying a .NET 9 API to Azure Container Apps using GitHub Actions. I want to inject a database connection string as an environment variable using a secret reference. My GitHub workflow sets the ...
SDG6's user avatar
  • 103
0 votes
1 answer
157 views

I have an azure container app that i am running in deployment mode: Deployment labels Automatic activation of multiple revisions using labels. Here is what I am doing: #create a second revision for ...
Tushar Swarup Tandon's user avatar
1 vote
1 answer
450 views

I use the sample project of .NET Aspire, support ticket API, locally it runs great only then I deploy the components using azd up, the deployment also works great. The published API says it can be ...
Mptje's user avatar
  • 1,471
0 votes
1 answer
120 views

I’ve migrated a WordPress site to an Azure Container App running inside a Virtual Network (VNet). The site is accessible via a custom domain, and I’ve configured the container app ingress as follows: &...
reegan-anne's user avatar
1 vote
2 answers
111 views

I'm trying to set access-token and refresh-token in cookies, so i know that the cookies configuration has to set to be same_site=none and secure=true to do cross-site. So i did that over the https by ...
Alfan Nufi's user avatar
-2 votes
1 answer
58 views

I'm deploying a PostgreSQL Azure app container on Azure, and my current mission is to place the certificate files into the container. I'm doing this using Terraform and the azurerm provider. ...
André Andrade's user avatar
0 votes
1 answer
109 views

Our deployments have recently started failing with the following error, despite no changes made to Azure, GitHub, or the workflow file: ERROR: The containerapp 'sample-name' does not exist To ...
Santi's user avatar
  • 789
1 vote
1 answer
524 views

I have a SQL Server instance running in an Azure Container App, created using .NET Aspire, and I'm trying to connect to it using SQL Server Management Studio (SSMS). Here are the details of my setup: ...
SDG6's user avatar
  • 103
1 vote
1 answer
70 views

I'm building a distributed system running on Azure Container Apps, where graceful shutdowns of containers (e.g., to flush state, finalize jobs, etc.) are important for ensuring data integrity and ...
Christian's user avatar
0 votes
1 answer
481 views

I am trying to deploy an Azure Container App from scratch on my Azure Subscription using Terraform with azurerm (4.27.0). I want my container app image managed by Azure Container Registry. Here is my ...
gabylink's user avatar
0 votes
1 answer
178 views

I'm having a very hard time to debug any Container Apps on Azure. I have a dockerfile with an entrypoint that bascially starts gunicorn for a django api. I have startup/liveness/Readiness probes. And ...
BeGreen's user avatar
  • 1,043
0 votes
1 answer
208 views

According to the Dapr documentation, when API logging is enabled, all calls to the Dapr API server—including the health check endpoints—should be logged. The documentation specifies that health check ...
Dan's user avatar
  • 3
0 votes
1 answer
104 views

I am having some serious issues with running my app in my pipeline to Azure. I am building an ASP.NET Core 6 app which runs on 0.0.0.0:5001. My dockerfile looks like this: FROM mcr.microsoft.com/...
Matthijs van Zetten's user avatar
0 votes
2 answers
488 views

We are fairly new to using Azure, currently working in a non-production scenario and recently experienced a problem with all our container apps that has since appeared to resolve itself, whilst it's ...
Chris Stephens's user avatar
3 votes
3 answers
1k views

I've set up a container registry that contains an image. I have a container app that uses the image and I have it working, but only when "Admin user" is checked in the registry's access keys....
Murphybro2's user avatar
  • 2,861
0 votes
1 answer
1k views

I've configured a ContainerApp with an auto scale rule in place based on the Azure Service Bus Topics. The up scaling of the ContainerApp works properly. However, it does not scale down. Any idea what ...
NetDev's user avatar
  • 3
0 votes
1 answer
123 views

Created a new Environment for the Container Apps, one with Virtual Network Integration, with one more Workload Profile, not only the Consumption, but also a Dedicated D4, a resource group and two ...
Pedro Costa's user avatar
0 votes
1 answer
259 views

I have a Container App which I want to scale down when unused. The Container App receives one request every five minutes, meaning that it is never scaled down. I want to find out where the request is ...
HenricF's user avatar
  • 220
0 votes
1 answer
62 views

currently In my container app i am using sp based authentication with ACR by providing the username/password like below. registry { server = var.acr_registry_name username ...
Coder's user avatar
  • 199
1 vote
2 answers
200 views

I am converting my Azure Functions from hosting on ASE to hosting on Container Apps. I get an error when trying to create a custom domain in the Custom domains tab within the Container App interface ...
IvanD's user avatar
  • 8,381
0 votes
1 answer
84 views

In the last few days when I've started to provision new Container App Environments the autogenerated MC_ resources are not getting setup correctly. They are missing nearly all config, which means my ...
Intrepid Developer's user avatar
0 votes
1 answer
649 views

I'm looking for a way to auto scale a Container App based on the amount of messages in the Azure Service Bus Topic, is that possible? I can only find examples based on queues, but not topics. Also I'...
NetDev's user avatar
  • 3
2 votes
1 answer
284 views

I'm trying to figure out how many replicas I would need in my container apps and don't fully understand how the number of replicas can impact the amount of compute and memory resources used for each ...
SamIAm's user avatar
  • 2,583
1 vote
1 answer
408 views

I'm attempting to create an Azure Container app using the CLI (az containerapp create), but the command is not recognizing the arguments (--args) provided. Reference for the command: https://learn....
Thiago Scodeler's user avatar
0 votes
2 answers
432 views

I'm using azure containerapps, and have done for over a year now. I have configured an Azure Devops pipeline to update the the image and revision using a pipeline. Until about one month ago this has ...
The Senator's user avatar
  • 5,421
1 vote
1 answer
185 views

I have a Blazor server application (running .NET 8) which I've put in an Azure Container which in turn is accessed via URL that is routed through HAProxy that also handled TLS termination, this ...
JaggenSWE's user avatar
  • 2,176
0 votes
1 answer
350 views

Before using Azure Container Apps (ACA), I deployed my applications on Kubernetes (AKS). In AKS, I only had to set environment variables for authentication, and the Python SDK for Azure would connect ...
BeGreen's user avatar
  • 1,043
0 votes
1 answer
826 views

I'm in the process of setting up a deployment pipeline for an Azure Container App (ACA) within an Azure Container Environment (ACE). My ACE is configured with a "D4" workload profile (4 vCPU,...
Michiel's user avatar
  • 3,646
0 votes
0 answers
142 views

I'm running a container app on Azure that scrape websites for analytics that runs for a few days; here is my configuration for the container: I allocated 8Gi for memory and 4 CPU cores. I analyzed ...
fu_sim's user avatar
  • 9
0 votes
1 answer
351 views

I have a Docker infrastructure that uses Nginx 1.27 to serve static files and act as reverse proxy for several related services. Access to different locations is straightforward and is controlled by ...
Jeff12's user avatar
  • 35
0 votes
0 answers
94 views

I'm currently deploying a container to Azure Container Apps (ACA). The deployment is successful, but the ACA receives a dynamic FQDN, such as appname-t.bluehorse-1234567890abcd.westeurope....
Michiel's user avatar
  • 3,646
0 votes
0 answers
99 views

There is small application hosted in cloud, the application code deployed in azure container apps. When the request comes in from browser first hits to Azure app gateway , using path based routing ...
Rohi_Dev_1.0's user avatar
1 vote
0 answers
563 views

I'm having a hard time to debug my container on Azure Container Apps. Before, I had a K8S cluster, where I could query my pod with kubectl and find quite easily the reason why the container was not ...
BeGreen's user avatar
  • 1,043
0 votes
1 answer
225 views

Setup I'm running a .NET 6 web app inside an Azure Container App and accessing Azure Key Vault for secrets and connection strings. Dependency Injection works fine for injecting my custom Key Vault ...
spiros's user avatar
  • 401
0 votes
1 answer
662 views

I am using python SDK to deploy a ContainerJob. Once the job is begin_create_or_update I start it. from azure.identity import DefaultAzureCredential from azure.mgmt.appcontainers import ...
BeGreen's user avatar
  • 1,043

1
2 3 4 5
9