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

How can I tell if my IContainerGroup.ExecuteCommandAsync() code method ran?

I am trying to connect to a container instance and run a command on it using IContainerGroup.ExecuteCommandAsync("dockerImage", "Command","Command".Length, 1); This returns a password and a webhookUri. What am I supposed to do with that…
ArbiterUnknown
  • 113
  • 2
  • 13
0
votes
1 answer

Azure Logic Apps ACI Connector - BackOff state

I am using the ACI connector in logic apps, and using a customized version of nginx docker image that keeps failing with "CrashLoopBackOff" error. The customization I've made is just these two: apt update apt install ssh and built a new image out…
Lalman
  • 946
  • 2
  • 11
  • 27
0
votes
1 answer

How to change dynamic private IP address in a virtual network to static (non-changing) IP address for containergroups (Azure Container Instances)

I currently have a containergroup that uses a virtual network to communicate. What happens is that from time to time the dynamic IP changes randomly. I know it is not possible to have a public (non-changing) IP address using a FQDN for the time…
0
votes
1 answer

Do Azure Container Instances share a HTTP connection pool?

I understand that ACI's (Azure Container Instances) share resources in a Container Group. A fair amount is documented here. However, does anyone know if Container Instances share a HTTP connection pool in their respective Container Group? I ask,…
DDN-Shep
  • 425
  • 4
  • 6
0
votes
1 answer

ACI sql server container does not point to file storage at startup

I am looking for making a sql server with a file storage persistence in Azure instance container(ACI) with a powershell script. I do the following steps 1. Create ressource group 2. Create a file storage 3. Create a sql server container that use the…
0
votes
0 answers

Create Azure container from an existing VPN

We have a huge roadblock of using Azure containers on ACI because we couldn't connect them back on on-premise from an existing VPN. When following the documentation here, we try to create the new container to an existing VPN that connect to…
0
votes
0 answers

Issue while creating azure container instance

I am able to run the docker image and container works fine in local as expected. After pushing the docker image to Azure Container Registry, I've tried to run through Azure Container Instance and throwing below error. Whereas the PS file is located…
0
votes
0 answers

How do I restart an Azure container group after the image has changed?

I am stuck with one last part of my Azure continuous deployment workflow. The workflow looks like this: - Push to the gitbhub repository on a certain branch - This triggers a travis build which creates a docker image and uploads that image to…
lukassteiner
  • 787
  • 1
  • 6
  • 25
0
votes
1 answer

Run Speech service on Azure Container Instance

I am trying to host the speech service docker image on our Azure Container Instance. I have followed steps described in the microsoft docs (link…
0
votes
1 answer

Find all running / terminated Azure Container Instances via CLI / API?

Having a hard time finding any docs or commands in the CLI to get a list of all running ACI containers I have in a resource group. Is it possible? My scenario is to spin up about 100 instances to scale-out work, but when the work is finished, the…
Andrew Connell
  • 4,939
  • 5
  • 30
  • 42
0
votes
1 answer

Azure Docker Containers to an Azure VM across vlans?

So what I'm doing is I've got a VM running in Azure. Simple enough, but what it's doing we want to secure from the outside world. I've got specific ports open, 8000, to everything on the 10 vlan, and my specific public IP that I"m using. …
Nick Jacobs
  • 579
  • 2
  • 9
  • 29
0
votes
1 answer

Azure Container Instance not showing anything via url after deployment

I am trying to deploy a docker image on azure. I am able to create the docker image successfully, also deploy successfully. But I am not able to see anything on my URL I specified to create the deployment for container. My app is a python flask app…
0
votes
1 answer

Can you make two ACI's communicate without them beeing in a container group?

I have two Azure Container Instances which I would like to share data, but as they're Windows containers, I can't put them into a container group. Ideally, one of them should also not be puplically availible through the internet.
TigersEye120
  • 664
  • 1
  • 9
  • 28
0
votes
1 answer

Unable to add environment variables to existing container

Using the Azure CLI, I'm trying to add environment variables to an existing azure container with the following command: $ az container create --resource-group toms-cool-group --name my-cool-container --image my-cool-container:v1…
Tom Irving
  • 10,041
  • 6
  • 47
  • 63
0
votes
1 answer

Enable Continuous Deployment on Linux Container-based function app using ARM Template in Azure

I have a Linux Container-Based function app that I am deploying from an ARM template, I have found that I can enable "Continuous Deployment" via the Portal (screenshot below), but can't automate it with an ARM Template. It would be really nice if…
SSH This
  • 1,864
  • 4
  • 23
  • 41