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

Ports not exposing properly?

My ports in a container app are not being exposed properly.. I get this docker run command docker run -d -p 0:3000 --name ############# -e Shouldn't the -p command be -p 3000:3000
Lee
  • 63
  • 1
  • 7
0
votes
1 answer

Azure Container Instance Can't Connect to Internet (outbound http GET request failed)

I have an Azure Container Instance created from the base image microsoft/windowsservercore:ltsc2016. The image has mercurial installed and checks out a private repo using hg clone but fails with the result abort: error: getaddrinfo failed. When run…
0
votes
0 answers

Access IP Tables in Azure Container Instances

I am trying to use this OpenVPN image in ACI (https://github.com/kylemanna/docker-openvpn). As part of it, it tries to set iptables and fails. + setupIptablesAndRouting + iptables -t nat -C POSTROUTING -s 192.168.255.0/24 -o eth0 -j…
dunnry
  • 6,858
  • 1
  • 20
  • 20
0
votes
1 answer

Azure container instnaces not able to reach key vault

Azure container instances behave differently to local Docker containers. When getting secret from Azure Key Vault via secret identifier I receive: Unhandled Exception: System.AggregateException: One or more errors occurred. (An error occurred while…
0
votes
3 answers

Configuration of Owasp Zap on Azure Container Instances

I am trying to create an owasp zap instance using azure container instances using the following code: $containerGroupName = "EW-owaspzap" $containerDnsName = "EW-owaspzap" $imageName = "owasp/zap2docker-stable" $myIpAddress = (Invoke-WebRequest…
johnstaveley
  • 1,400
  • 1
  • 22
  • 46
0
votes
1 answer

How to connect to Azure Container Instance running Server Core

I create a new Container Instance. I use microsoft/windowsservercore as its docker image. Everything goes ok, without error. But then, I cannot connect to it. I need to be able to connect to it so I can enable Remote PS. Container exec does not…
Atiq Rahman
  • 680
  • 6
  • 24
0
votes
1 answer

azure.ContainerGroups.ListByResourceGroup throws Resource not found exception

When using the Microsoft.Azure.Management.ResourceManager.Fluent library to enumerate containers in a resource group: azure.ContainerGroups.ListByResourceGroup(resouceGroup) Returns an enumator, but doing any operation (e.g. .ToList()) on the…
Red Riding Hood
  • 1,932
  • 1
  • 17
  • 36
0
votes
1 answer

Azure Container Groups and Later Swapping One of the Containers in the Container Group

When you deploy an azure container group ("Microsoft.ContainerInstance/containerGroups"), can you replace just one of the containers at a later time? Or does the creation of the container_group have to have all the containers at the time of creation…
granadaCoder
  • 26,328
  • 10
  • 113
  • 146
0
votes
2 answers

Angular2 deployment to Azure Container Instance using Docker-Unable to access the app

Created a simple angular2 app through following steps: npm install -g angular-cli ng new demo2 (If packages are not getting installed go to demo2 folder and execute npm install) ng server Navigate to localhost:4200(app works!!!!) Have not any…
0
votes
2 answers

In Azure Container Instances, is it ok to reuse container groups or should each deployment use its own?

When working with Azure Container Instances, is it ok to reuse an existing container group or should we be creating a new container group each time we deploy a container? You don't have this choice when using the portal, the CLI or PowerShell, but…
0
votes
2 answers

Azure Container Service in Runbook schedule

After consulting the Microsoft Support I am able to kick off a Docker container via Azure Automation with the following code: $connection = Get-AutomationConnection -Name AzureRunAsConnection $secpasswd = ConvertTo-SecureString "132asdf9asdf342"…
JQadrad
  • 541
  • 2
  • 16
0
votes
1 answer

DnsNameLabelNotSupported - VSTS ARM Template for Azure Container Instances

Basically after adding the "dnsNameLabel" value for my arm template for azure container instances, i got this message: 2018-07-03T14:31:14.8518944Z ##[error]At least one resource deployment operation failed. Please list deployment operations for…
0
votes
1 answer

Weird error deploying Azure Container Instances

I am trying to run Docker image from the Docker Hub in the Azure Container Instances but deployment always fails in some reason. The repository on Docker Hub is public. The service says that the image has been successfully pulled but it pulls it…
Andriy
  • 85
  • 1
  • 9
0
votes
1 answer

Setting up Persistent Data for Carto/Postgresql on ACI

My main objective is to get an image up and running quickly and easily while persisting data. I THINK an ACI is the best way to do this. Assuming this is true... [Edit2] It appears that there may be a more fundamental problem is the inability to…
0
votes
0 answers

Choosing a best solution available with azure for a video processing scenario

Here is the scenario for which I am developing a app. User submits a request to server. And immediately I need to stitch together some video clips and apply some filters and send it back to user immediately (its taking around 16 seconds in my…