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
0 answers

Presenting a file as the logs for a docker windows container

I'm setting up a windows container in ACI (Azure Container Instances). There's a logs tab in ACI, but it's not being used by my container since the application runs as a service detached from the stdout. How do I direct a log file to the logs tab…
Dom
  • 213
  • 3
  • 10
0
votes
0 answers

azure container instance : deployment successful - IP address doesn't not respond

I have a ML container image which is accessible at - http://localhost:8501/v1/models/my_model on my local system. After I push it to an Azure Container Registry, I create Azure Container Instance (set port - 8501). its deployment is successful, and…
ashwini prakash
  • 135
  • 1
  • 12
0
votes
1 answer

Route all traffic to a virtual machine to the container instance on Azure

I have a container instance and a virtual machine (linux) in the same vnet on Azure. The container is a web service. The virtual machine also has a public IP address. How can I route all traffic to the virtual machine in a specific port(example:…
ktcl
  • 365
  • 6
  • 23
0
votes
1 answer

Can't access Drools in Azure Container Instance

When i run docker.io/jboss/drools-workbench-showcase locally it works fine at localhost:8080/business-central per instructions Trying to run it in Azure container instance using the following terraform configuration it times out. resource…
0
votes
1 answer

Cannot create Azure container instance (Windows)

I have created an Azure DevOps pipeline to create new instances of Azure container instances (Windows) using an Azure CLI task with the following script: az container create \ -g $(BuildAgent.ResourceGroup) \ --name $(BuildAgent.ContainerName)…
Rui Jarimba
  • 11,166
  • 11
  • 56
  • 86
0
votes
1 answer

Azure Container Instances no internet access for Windows Container?

My Windows Container in Azure Container Instances does not seem to be able to access the internet. What can I do to access the internet from my Windows Container?
halllo
  • 858
  • 12
  • 25
0
votes
1 answer

Change ports on running Azure Container Instance

Is there any way of changing the opened ports in an Azure Container Instance that is smarter (and faster) than deleting the container and creating a new one?
TigersEye120
  • 664
  • 1
  • 9
  • 28
0
votes
1 answer

Does a restart of an Azure Container Instance update the image?

I'm running an Azure Container Instance of a rather large image (~13GB). When I create a new instance it takes around 20 minutes to pull the image from the Azure Registry. When I update the image and then restart the container it also says it's…
TigersEye120
  • 664
  • 1
  • 9
  • 28
0
votes
1 answer

What port is mapped to the FQDN of an Azure Container Instance when multiple ports are opened?

Title basically says it. The official MS documentation only says that you can connect to the container via the FQDN. So I assumed that when I open one port it would connect me to that port of the container. But what happens when I open more than one…
TigersEye120
  • 664
  • 1
  • 9
  • 28
0
votes
1 answer

How to send POST request to running ACI instance of Docker container

I have a running Azure Container Instance (ACI) based on a Docker image with a single port exposed. The container instance is an API that accepts basic JSON requests and returns a JSON response. I am currently unable to get a response from the…
sjporter
  • 18
  • 4
0
votes
1 answer

How to retrieve auth keys for an ACI deployment in Azure Portal (or Cloud Shell)?

I have created a deployment on ACI with Azure ML service, and its status is healthy. When deploying, I set auth_enabled=True, so that the service requires authorization keys to respond. I can get the service auth keys for that deployment in my Azure…
0
votes
1 answer

ACI - VNET - IP Address

I have created Virtual Network and connected API Management to Virtual Network. I am thinking to host my REST API in Azure Container Instances in my VNET and then expose those API in Azure API Management by configuring IP Address of Azure Container…
RonakThakkar
  • 903
  • 5
  • 7
0
votes
1 answer

How to attach private vnet or subnet with container instances in java using Azure SDK?

Challenge in attaching subnet and vnet configurations while creating azure container instances. I am trying to create Azure container instances using the Azure SDK - Java/.Net. This container requires to communicate with components across different…
0
votes
1 answer

What's the easiest way to move from ACI to AKS deployment?

After having solved Why does my ML model deployment in Azure Container Instance still fail? and having deployed on ACI, I am using Azure Machine Learning Service to deploy a ML model as web service on AKS. My current (working) ACI-deployment code…
0
votes
1 answer

Container instances metrics are missing

Metrics for our Azure Container instances has stopped showing up in the portal and when querying Azure Monitor using the CLI. I've tried to redeploying instances, restart the containers, and disabling features such as log analytics. These are the…