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
4
votes
2 answers

Duplicate image registries 'index.docker.io' found in the 'imageRegistryCredentials' of container group

[PS C:\Source\VelocityAzurev0.10.0\credentialagent-docker-compose> docker compose up [+] Running 0/1 - Group credentialagent-docker-compose Error …
mohrin
  • 41
  • 2
4
votes
2 answers

Error: Socket Hang Up with Postman API testing

We have deployed some APIs (few developed using Node.js/Express.js and others using Python Quart). All out our APIs are deployed using the Azure containerized instance. We have set-up periodic API monitoring through Postman. The APIs fail about 20%…
Navaneeth
  • 190
  • 1
  • 1
  • 16
4
votes
1 answer

Deploying Azure container s without running them

I am new to running containers in Azure and I am puzzled with the use case below, If you feel I am wrongly using containers, feel free to give me an alternative approach. Core problem: I am not able/ don't know how to create a container instance in…
4
votes
3 answers

Azure container instances gets killed without obvious reason

We run container instance group daily (triggered by logic apps). The container basically connect to queue, process it and ends. Sometime, according the events log, the container gets killed, there is nothing in logs, except the last thing our app…
user3337015
  • 111
  • 4
  • 10
4
votes
1 answer

Start container instance on web request to FQDN

Let's say we have a (containerized) backend which is only sparely used. Maybe once every couple of days or so, a (static) web front-end calls an API endpoint of that backend. The backend conveniently happens to be stateless. No data store or…
Max
  • 9,220
  • 10
  • 51
  • 83
4
votes
1 answer

How to get Azure Container Instances using my DNS server?

In ACI we use Linux containers with virtual network support. There we have some dockerized azure function apps running that make use of Azure ServiceBus, Azure Storage Accounts, and Azure CosmosDb - which are all inside of the virtual network. All…
4
votes
3 answers

Azure Container Instance is immediately killed on Startup

I am trying to run an azure container instance but it appears to be getting killed off the second I run it. This works fine in 2 other resource groups but not my production resource group where I see the following: In events I see 'Successfully…
johnstaveley
  • 1,400
  • 1
  • 22
  • 46
4
votes
1 answer

When to stop OR delete Azure Container Instance

This is a question on general advice on the usage of ACI and its pricing calculation. I checked the MSFT link: ACI pricing It stated that it is charged based on memory and CPU consumptions. And the calculations for my scenario is not available in…
csamleong
  • 769
  • 1
  • 11
  • 24
4
votes
1 answer

Azure Container Instance : Container creation issue

I am currently trying to create a new container on Azure Container Instance, to deploy a .net core app image on it. (I'm a newbie on this techno). I have created a Container Registry on Azure and pushed an image on it (.net fore Console…
4
votes
1 answer

Why does my ML model deployment in Azure Container Instance still fail with "current service state: Transitioning"?

I am using Azure Machine Learning Service to deploy a ML model as web service. I registered a model and now would like to deploy it as an ACI web service as in the guide. To do so I define from azureml.core.webservice import Webservice,…
4
votes
0 answers

Need a way for a web service running in an Azure Container Instance to determine the client IP address

I have a web service running in a ACI and need a way to determine the client IP address. It appears that there is a proxy fronting the instance as all connections are from 10...*. There doesn't appear to be an X-Forwarded-For header in the…
4
votes
1 answer

Cacheable Docker image for Azure Container Instances

I'm trying to use Azure Container Instances and I have a problem with long pulls of my image. It takes about 3 minutes for ACI to pull my image. I've checked the Troubleshooting guide which says the following: To ensure the fastest Windows…
4
votes
3 answers

How do I deploy ASP.NET app to Azure Container? - OS version of image is not supported

I'm trying to deploy an ASP.NET web app to an Azure Container Instance, but I get this error: New-AzureRmContainerGroup : The OS version of image 'bwcontainercr.azurecr.io/azurecontainertest:v1' is not supported. Here are the steps to reproduce…
4
votes
1 answer

Terminated ACI not disappearing

I'm working on a new container image that runs my worker process to drain an Azure queue. Once the queue is empty my app exits and I'd like the ACI to de-allocate and be removed as well. What I am seeing is the ACI stick around. It is in a…
BrettRobi
  • 3,793
  • 7
  • 40
  • 64
4
votes
1 answer

Mapping an ACI-instance to a Reserved IP on Azure

Are there any best practices on continuous deployment to an Azure Container Instance so that it keeps the public IP? Or mapping an Azure Reserved IP to a dynamic IP that the ACI gets bound to at deployment?
1 2
3
43 44