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

Azure Container - can not login to private registry "Error response received from the docker registry"

from Azure we try to create container using the Azure Container Instances with prepared YAML. From the machine where we execute az container create command we can login successfully to our private registry (e.g private.dev on JFrog Artifactory )…
2
votes
0 answers

Azure Container Instance Pricing

I am trying to deploy a ASP net core web application in Azure Container Instance. Since it is having a microservice pattern I had to create 3 container groups for 2 API's and 1 for the web application. Each container group is having one application…
2
votes
1 answer

Azure Container Instances - how to mount volume from Azure File Share through the Azure Portal?

is it possible to somehow mount volume from Azure File Share during the creation process of ACI instance within the Azure Portal directly in "Container Instances"? Or mount volume must be embedded within the image or referenced to container solely…
vel
  • 1,000
  • 1
  • 13
  • 35
2
votes
1 answer

Where does the Azure Machine ACI Webservice deploy?

When we deploy a model as an ACIWebService in Azure Machine Learning Service, we do not need to specify any deployment_target. According to the AzureML documentation for azureml.core.model.model class, deployment_target ComputeTarget default value:…
2
votes
2 answers

How to retrieve a trained model docker image deployed to ACI?

I've trained a model and deployed it to ACI using Azure ML studio. It works as expected. Now I want to download the docker image and use it in my local environment. Is it possible to download the image using CLI?
Artem
  • 46
  • 5
2
votes
1 answer

How to set cloud_RoleName in Azure Container Instances?

We've deployed Azure Functions on Linux to an Azure Container Instance. Unfortunately, the application insights logging is not displaying my cloud_RoleName at all using the default ILogger. In order to query logs by container, I need to set the…
2
votes
2 answers

Networking between container groups in a virtual network without ip addresses

Imagine the following scenario: I have a virtual network. In it are multiple container groups/instances which needs to communicate among themselves. Each group is in a separate subnet. There is also a application gateway which needs to know the…
Mik4sa
  • 33
  • 1
  • 6
2
votes
1 answer

How to expose two port in webapp for container in azure?

Does web-app for container support exposing multiple ports. Ex my docker image consume two port but in web-app for container, i can only use one port either port 80 or port specified by WEBSITES_PORT in app setting. Link to similar question but it…
2
votes
2 answers

Net Core 3.1 gRPC Server on Azure Container Instance only listening port 80

I'm testing the gRPC using Visual Studio 2019 16.7.2 on Windows 10 64bits, creating the gRPC Server with Net Core 3.1 and template 3.1.8 Greeting Service sample. Also creating the client with Net Core 3.1 with Google.Protobuf 3.13.0,…
2
votes
2 answers

Docker run: invalid reference format error

I am trying to install and run azure cognitive-services Computer Vision Read containers.I am getting this error in cmd docker: invalid reference format. See 'docker run --help'. I tried to run below cmd docker run --rm -it -p 5000:5000 --memory 7g…
2
votes
2 answers

Static IP address for Azure Container Intances

We run tests on Azure Container Instances. My question is rather simple. Is there a way to assign a public static ip address to the containers? Our tests are running and need connection to certain nodes, but how to allow them that if I don't know…
WhoAmI
  • 1,013
  • 2
  • 9
  • 19
2
votes
1 answer

Running Gitlab Runner in Azure Container Instances (ACI)

I would like to run Gitlab-Runner in Azure Container Instances (ACI). For this I have the docker container gitlab/gitlab-runner running in the Azure ACI. With the following command I register this runner for my Gitlab server. gitlab-runner register…
2
votes
1 answer

Azure Container Instances change environment variable on start

I am creating a container so my developers can run some e2e on their created features. The container have a environment variable that is pointing to their URL that they want to run the test. This URL is randomly generated every time. I am looking to…
Patrick Vibild
  • 405
  • 1
  • 3
  • 16
2
votes
1 answer

Configuring same ports with different protocols in Azure Container Instance

I am trying to set up pi-hole in Azure Container Instance. Here is the link to the docker-compose file of pi-hole. Following the YAML reference for the Azure Container Instance, I am trying to convert this docker-compose file. Here is the YAML file…
ganesshkumar
  • 1,317
  • 1
  • 16
  • 35
2
votes
1 answer

kubernetes pod stuck in waiting

When a pod gets stuck in a Waiting state, what can I do to find out why it's Waiting? For instance, I have a deployment to AKS which uses ACI. When I deploy the yaml file, a number of the pods will be stuck in a Waiting state. Running kubectl…
Matt
  • 41
  • 1
  • 3