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 ACI on Windows - How to access shared folder in container from on-premises and access Azure fileshare

i know that we can access azure file share from only the Linux Azure Container Instance. (not windows) link here So how can i access Azure file share from an Azure ACI of windows ? Can i access a shared folder on Azure ACI container from…
MSTechnie
  • 175
  • 10
0
votes
2 answers

Azure Container Instances Python API - fails to fetch image from Azure Container Registry

Based on this guide I wrote this sample code which works for the default image ("microsoft/aci-helloworld"), but fails when changing to an image from an Azure Container Registry in my azure subscription. The error message is: The image…
0
votes
1 answer

Running multiple instances of an executable in Azure

I have an executable that will be running for the lifetime of a user session. Each user will cause a new instance of the executable to run. If I package the executable up in a container, can I run multiple instance of the executable in the same…
Sprotty
  • 5,676
  • 3
  • 33
  • 52
0
votes
3 answers

Windows based Azure Container Instance (ACI) - VNet integration

I heard only linux ACI's can be integrated to VNet . Can windows OS based Azure Container Instance be integrated to VNet ?
MSTechnie
  • 175
  • 10
0
votes
1 answer

Azure Container Instances: authenticate to private ACR with client certificate based service principal in ARM template

The Azure Container Instances ARM template schema exposes the below fields to authenticate to pull an image from a private ACR using a service principal: "imageRegistryCredentials": [ { "server": "myacrserver.azurecr.io", …
0
votes
2 answers

Azure DevOps Ephemeral agents not working

I am trying to configure an Ephemeral agent in Azure DevOps (https://github.com/microsoft/azure-pipelines-ephemeral-agents) but it does not work :( I created the Azure services: A container registry, one VNET with one subnet and one NGS asociated to…
Daniel
  • 148
  • 1
  • 12
0
votes
2 answers

Azure container instance - How start a container to keep active in background

I begin in Azure Container Instance and I had a question to execute my container. I created a Windows container from scratch with a dockerfile and works fine on a VM with Docker Desktop. So, after that, I push this container in my Azure Container…
0
votes
1 answer

how to set a fiexd hostname for azure container app service

I'd like to know if it's possible to specify a fixed hostname for an azure container app service? Just like what we did using the command "docker run --name xxx -h {fixed-hostname} ...", thanks.
kusey
  • 5
  • 3
0
votes
1 answer

Azure Container Instance Managed (User Assigned) Identity not able to fetch Keyvault secrets

Created a User Assigned Managed Identity Azure Resource I deployed the Container Group with User Managed Identity as shown below: Provided access to User Identity for a given Keyvault Now when I am trying to access the keyvault using the…
0
votes
2 answers

Migrate Docker multi-container app to Azure

I have a Linux CentOS host running Docker Ce with multiple containers running a few multi-containers apps (webapps using docker-compose) and I would like to migrate those containers to Azure Containers serverless platform. How can i migrate all…
0
votes
0 answers

Low CPU usage during extensive R calculations in Azure container instances

I'm calculating heavy R workloads on ACI in a Docker container (https://hub.docker.com/r/rocker/r-ver Tag 3.5.3). The calculations are working in ACI, but it's slower than expected. When observing the CPU metrics in Azure portal I see that the…
Fleet23
  • 23
  • 5
0
votes
1 answer

Configure a docker container to access both internet and other docker containers

I am using docker for windows and have a docker compose file that is creating a couple of customer applications as well as a RabbitMq and a Seq container. These are all talking to each other via instance names on the local network created by…
0
votes
1 answer

Error while mounting volume in azure container instance

I am trying to mount volume by following the tutorial on this link Deploy container and mount volume - YAML. The relevant portion of yaml file is volumeMounts: - name: filesharevolume mountPath: /home/indy/.indy_client/wallet/ …
yatharth meena
  • 369
  • 4
  • 13
0
votes
1 answer

Azure ACI and File Share - Volume mounted linux MSSQL Server is not accessible

I am using mssql server image in Azure Container Instance. Without mounting any volumes, ACI is created successfully and works fine. But when I mount a volume, to persist data even after restart of the container, made of Azure Storage account (File…
0
votes
1 answer

How to create multiple users with multiple folders with user defined permission in sftp hosted on Azure container instance

I'm trying to deploy atmoz sftp images for multiple users. I am new to this technology. Below are the points I have tried. I took the template from GitHub and deployed it on azure and with the help of the template I'm able to create the two…