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

Unable to mount /home directory using ARM template with Atmoz/SFTP (SSH)

I'm using the template provided by https://charbelnemnom.com/2019/06/how-to-deploy-sftp-service-on-microsoft-azure/ In that example he mounts a volume specific to the user. This works perfectly. I wanted to change the mount to just mount the "/home"…
Geekn
  • 2,650
  • 5
  • 40
  • 80
0
votes
2 answers

Assign static outbound ip address to azure container instance

I need to make a setup where I can read and write to an external sql db from a python script residing in a azure container instance. I order to make this work I need to assign a static ip to the container. As I cannot associate a container instance…
0
votes
1 answer

When I create AKS cluster with virtual nodes, why it creates a VM

I read that virtual nodes is the way to setup AKS cluster running with ACI container instances instead of VMs. That being case, when I create AKS cluster with virtual nodes enabled, it still creates the VM for it. I think Kubernetes master is…
Anand
  • 73
  • 7
0
votes
1 answer

Resource is not available in the location westeurope - Azure Container Instances with Windows OS

I have docker image created by below docker file: FROM mcr.microsoft.com/windows:10.0.17763.1039-amd64 COPY ["processor", "processor/"] ENTRYPOINT ["processor/Processor.exe"] I'm using Windows as base image because image processing library that…
0
votes
2 answers

Azure Instance Container : container connectivity issues

I am currently trying to create a new container on Azure Container Instance, to deploy a angular app frontend on it , using Nginx Image. I have created a Container Registry on Azure and pushed an image on it (from on-premises Docker). This…
Quentin Merlin
  • 664
  • 1
  • 6
  • 31
0
votes
1 answer

Why Azure Container Instance does not have a default HTTPS endpoint?

I am wondering, what is the reason for Azure Container instances not to have an HTTPS address? In comparison, Web Apps do have HTTPS endpoint by default, while Container Instances have just HTTP endpoint assigned. Why is that?
mnj
  • 2,539
  • 3
  • 29
  • 58
0
votes
1 answer

Update a single container in an Azure container instance with multiple container

We've got an Azure container instance running in Azure with multiple containers deployed to it (via a yaml file). When we run updates, we have to run the full yaml file every time, with some of the values (i.e. image id) amended. We'd like to break…
ossentoo
  • 1,675
  • 2
  • 20
  • 44
0
votes
2 answers

How to trigger STDERR on release pipelines in Azure Devops

We have an angular app which has some e2e tests on it. We create a standalone docker image with the e2e tests, one for the app. When we deploy the app, using azure devops release pipelines, we have a poststep, after deploy that should run the e2e…
petur
  • 1,366
  • 3
  • 21
  • 42
0
votes
1 answer

Running commands in azure container instance after container running

I am having code-server container running and I am running az container exec --resource-group resourcename --name code-server --exec-command "ls" it is giving list of files and folder but if we run az container exec --resource-group resourcename…
San
  • 69
  • 1
  • 8
0
votes
1 answer

Steps for deployment of Container Instance with Virtual Network

I'd like to automate the deployment of a virtual network (that is peered with another network) and container instance connected to that network. I'd just want to confirm that I'd do the correct steps. I'll be using Azure REST API. Deploy a Virtual…
0
votes
1 answer

Azure Container Instance creation issue from Azure DevOps YAML pipeline

I'm in the process of migration my solution from classic pipelines to YAML pipelines in Azure DevOps. One of the steps in the pipeline is the creation of ACI container from the image I build and push in the previous steps. When I run this step using…
kamilwydrzycki
  • 451
  • 2
  • 6
  • 16
0
votes
1 answer

How to deploy Azure Container Instance to VNET using Azure CLI

I need to deploy Azure Container Instance with VNet connection using Azure CLI. Here's the command I'm using: az container create -g My_RG --name ubuntu-aci-2 --image ubuntu --vnet…
mnj
  • 2,539
  • 3
  • 29
  • 58
0
votes
1 answer

How to deploy ubuntu container to Azure Container Instance and keep it running

I cannot manage to deploy 'ubuntu' to Azure Container instance without it becoming "Terminated" right after the deployment. I tried setting the command to ["/bin/bash"], however, it doesn't stop the container from terminating.
mnj
  • 2,539
  • 3
  • 29
  • 58
0
votes
2 answers

Deploying docker container in Azure with shared volume

For development: I have a node API deployed in a docker container. That docker container runs in a Linux virtual machine. For deployment: I push the docker image to Azure (ARC) and then our admin creates the container (ACI). I need to copy a data…
0
votes
1 answer

Stop container instances group when one of the containers is terminated

I am creating a container group with a container that runs E2E on a website. How can I stop the entire group when one of the containers have stop running? (in this case the E2E tests) I am creating this through a pipeline and I need to stop the…
Patrick Vibild
  • 405
  • 1
  • 3
  • 16