Questions tagged [azure-container-instances]

Azure Container Instances is a cloud service from Microsoft that offers to run containers as a service without managing the underlying infrastructure/servers. This tag is used for questions related to using azure container instances

Azure Container Instances offers the fastest and simplest way to run a container in Azure, without having to provision any virtual machines and without having to adopt a higher-level service.

Azure Container Instances is a great solution for any scenario that can operate in isolated containers, including simple applications, task automation, and build jobs. For scenarios where you need full container orchestration, including service discovery across multiple containers, automatic scaling, and coordinated application upgrades, we recommend the [tag:Azure Container Service].

Features

  • Fast startup times
  • Hypervisor-level security
  • Custom Sizes
  • Public IP connectivity
  • Persistent storage
  • Linux and Windows containers
  • Co-scheduled groups

For more information, see Documentation

658 questions
3
votes
4 answers

Failed to delete subnet

I created a new Azure container instance (ACI) with a new vnet and subnet by Azure CLI I deleted ACI from Azure portal and now Im trying to delete subnet but gives me the following errors: Failed to delete subnet 'SubnetNAme'. Error: Subnet…
exitista
  • 563
  • 2
  • 10
  • 21
3
votes
3 answers

Attaching a static ip address to Azure Container Instance

Is there any way we can attach an fixed ip address to Azure Container Instance(ACI). In AWS we can attach an elastic ip to ec2 instances, but in Azure we have not used any VM , we took Azure Container Instance as a service. The ip address of Azure…
Bala krishna
  • 519
  • 1
  • 10
  • 24
3
votes
2 answers

How to attach SSL certificate to Azure Container Instance

I have created a Docker image by building a Dockerfile from Nodejs application then pushed the Docker image to Azure Container Registry(ACR). Then created linux Azure container instance as service by referring the Docker image that we pushed to…
Bala krishna
  • 519
  • 1
  • 10
  • 24
3
votes
1 answer

unable to connect to conatiner instances console web socket is closed or could not be opened

I have deployed a docker image to an azure container instance. i am attempting to access the container console via settings>containers>connect. I receive the following error: screenshot The following web socket error occurred: error: Web socket is…
Stephen
  • 95
  • 2
  • 6
3
votes
2 answers

Mount an individual file in Azure Container Instances?

I'm attempting to mount a single file in an azure container instance, in this case the ssh host key file as described in this docker image: https://github.com/atmoz/sftp However from my experiments Azure Container Instances via ARM / Azure CLI seem…
Alex KeySmith
  • 16,657
  • 11
  • 74
  • 152
3
votes
1 answer

Azure container instances deployment failed

I am deploying a machine learning image to Azure Container Instances from Azure Machine Learning services according to this article, but am always stuck with the error message: Aci Deployment failed with exception: Your container application…
3
votes
1 answer

How much memory and CPU is assigned to each container in a Web App for Containers?

In AWS you can select a combination of CPU and memory for each container, but I don't find that option in Azure. How much memory and CPU does Azure assign to each container in a Web App for containers? And How can I figure out the resources…
Jesús López
  • 8,338
  • 7
  • 40
  • 66
3
votes
2 answers

How detailed is the Application Insights telemetry using Docker hosted in Azure Container Instances

When I deployed my app to Azure App Service I got quite awesome telemetry out of the box. Some of the telemetry data is generated by the App Service itself, some of it by my ASP.NET Core app that is using Application Insights logging. As a result I…
3
votes
1 answer

Azure Container Instances with blobfuse or Azure Storage Blobs

I'm deploying to azure container instances from the azure container registry (azure cli and/or portal). Azure blobfuse (on ubuntu 18) is giving me the following error: device not found, try 'modprobe fuse' first. The solution to this would be to…
3
votes
1 answer

Reading Azure container instance secret volumes from asp.netcore 2.2 web app

I have read this documentation from Microsoft which describes how secret volumes can be added to a container instance: https://learn.microsoft.com/bs-latn-ba/azure///container-instances/container-instances-volume-secret I would now like to read…
ossentoo
  • 1,675
  • 2
  • 20
  • 44
3
votes
1 answer

How is pricing calculated for Azure Container Instance with restart policy Always

I have a Linux nodejs express webapp container deployed to Azure Container Instances with the restart policy set to Always. How will the pricing be calculated for this? Is it per http request or for 24/7 using the memory/cpu duration described at…
Adam
  • 2,082
  • 2
  • 19
  • 17
3
votes
2 answers

Getting logs for Azure Container Instance that freezes

We have an Azure Container instance that seems to be freezing under heavy load. And we are able to cause this through a load test. I am not looking for the exact solution to that right now, but what I am confused about is that I can't seem to get…
chuckw87
  • 647
  • 1
  • 6
  • 14
3
votes
2 answers

Pass flags to docker in Azure aci

I have a container image (rancher/rancher:latest) that I need to pass "--acme-domain=" flag. How can this be done in Azure Aci?
JMan
  • 61
  • 4
3
votes
1 answer

az container exec when using Docker compose

Is it possible to execute command in a container which is running under Azure WebApp service by Docker Compose? When I create single container by az container create ..., then it works. But when I create set of containers by Docker compose script…
2
votes
2 answers

docker-compose volume on azure storage : how to bind to a file

I can't get to azure container instance linked a file from my docker to a file that I placed in an azure storage account the path after the volume name does not seem to be accepted : /conf/nginx.conf volumes: -…