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
0
votes
1 answer

Azure Container Instance command execution returns "no such file or directory"

I want to execute a number of commands with az container exec. The script was definitely working back in November 2020, but now a statement like az container exec -n $containerGroupName -g $containerGroup.resourceGroup --exec-command "rm -rf…
Kai Walter
  • 3,485
  • 2
  • 32
  • 62
0
votes
0 answers

How to work with OneDrive files in Azure Container Instances?

I want to use Azure Container Instances (ACI) to process larger media files (up to 1GB in size for both input and output). The files are stored in a shared OneDrive for Business folder. Processed files should be stored at the same location with a…
muffel
  • 7,004
  • 8
  • 57
  • 98
0
votes
1 answer

cannot access ACI restful endpoint deployed to VN

I deployed a docker image to an ACR and then to an ACI with a command like this: az container create --resource-group myrg --name myamazingacr --image myamazingacr.azurecr.io/test3:v1 --cpu 1 --memory 1 --vnet myrg-vnet…
cs0815
  • 16,751
  • 45
  • 136
  • 299
0
votes
1 answer

error whilst trying to deploy container image after introduction of private endpoint

This command: az container create --resource-group MyRespourceGroup --name AcrName --image bla.azurecr.io/test3:latest --cpu 1 --memory 1 --registry-login-server XXXX.azurecr.io --registry-username XYZ …
0
votes
1 answer

Azure Container Registry - price per Gb or Cached Images TTL

i am new on Azure. I will use Container Registry, but Azure has different pricing model. Different as GCP and AWS. Pay per day for 10 Gb. https://azure.microsoft.com/en-us/pricing/details/container-registry/ But i have only one image for 500Mb. 5$…
JDev
  • 2,157
  • 3
  • 31
  • 57
0
votes
1 answer

Simple way to copy files onto Windows-based Azure container instance

Azure Files volume mounting is not supported in Windows containers. I'm aware I can use AzCopy with Azure Files, but I was wondering if there was a simpler way that doesn't involve creating an Azure storage resource. Because I would have the added…
Joseph Ho
  • 69
  • 1
  • 1
  • 9
0
votes
1 answer

How do I enable HTTPS for a Container Instance on Azure

I've got a nodejs app running inside docker on a container instance in Azure. I have a URL which is an IP address with HTTP only. e.g. http://123.456.789 I need it to be HTTPS because it is providing content to a React frontend and therefore I have…
32423hjh32423
  • 3,048
  • 7
  • 44
  • 59
0
votes
0 answers

ACI Virtual Nodes pods failure giving "ProviderFailed" error

I am getting the "ProviderFailed" error message when running an Azure Container Instance (ACI) container in a virtual node.
Dilan Perera
  • 131
  • 1
  • 2
  • 7
0
votes
0 answers

ACI container group disappears after successful exit

I am using ACI to run a single-shot container that reads a storage blob, computes for anything from a few seconds to a few hours depending on the blob contents, then writes results to another storage blob. Containers are spawned as needed using…
Richard Hussong
  • 123
  • 1
  • 5
0
votes
1 answer

Not able to access Key vault using system assigned identities in custom app service container

I have created a custom Linux app service container. The docker image has azure CLI installed and port numbers 80, 2222 are opened. I have created a system-assigned identity for the key vault. I could see the env variables related to the key vault.…
0
votes
1 answer

Azure Container Group behind application gateway with public IP

I have an application gateway with frontend public IP address, connected to a VNET via its subnet and using a single backend pool that points to a container group in the same VNET but different subnet. The backend pool points to the IP address of…
0
votes
1 answer

Are there any way to delete Azure Blob Container files through Javascript?

I am currently having a project where I will upload some files in the Blob Container and there are instances that I also want to permanently delete some files but it should be through JavaScript. Are there any ways?
0
votes
2 answers

Usage of Command Override in Azure Container Instances within Azure Portal

I'm trying to deploy a Windows-based Container from a private repository within an Azure Container Instance using the Azure Portal and I'm not sure whether I use the "Command override" at the "Advanced" section properly (probably I do not). The…
0
votes
1 answer

Can't Connect to Azure Container Instance .net Core MVC Linux Container

I'm pretty new to Docker and Azure as a whole so please bear with me.. FOR STARTERS I have a Linux container based Docker Image which I am able to run and connect to successfully locally. Here is the dockerfile I've put together #Use microsoft's sdk…
Brandon Jerz
  • 153
  • 1
  • 2
  • 11
0
votes
1 answer

Install Azure DevOps Test Agent in Azure Function App / Azure Container Instances to leverage sliced testing

I have been working on a requirement to run the automated tests (Test Plans/ Test Suites) in a test agent - Requirements - Leverage test slicing for Visual Studio automated tests with hosted azure containers Run them on hosted cloud agents…