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

docker compose up with customized volumes on azure container instance

I am trying to docker compose up to Azure Container Instances, but nothing shows up, and no docker container is created. As below CCSU_ACA_COMP+tn3877@CCSU-ND-909264 MSYS ~/source/cab/cab-deployment (master) $ docker compose…
Tri
  • 199
  • 9
0
votes
1 answer

How to perform HTTP POST from within container running in Azure Container Instances?

I have a quick and dirty REST API that I have written in Python/Flask and deployed to an Azure Container Instance with a public IP address. As part of the functionality I call out to another resource in the usual way: response =…
Aidan
  • 4,783
  • 5
  • 34
  • 58
0
votes
1 answer

How can i specify docker run argument in azure container creation

When I run docker locally I specify the ipc argument equal to host in order to avoid insufficient shared memory problem. docker run -it --name visdrone_cpu -p 8000:8000 --ipc host visdrone. How can I replicate this in azure during the container…
serc
  • 3
  • 1
0
votes
1 answer

Access Azure Container Instance from Azure Function

I have an Azure Function which needs to invoke an Azure REST API for Azure Container Instances - basically I just need to restart the Container group- I have managed identity enabled for the function and tried using AzureServiceTokenProvider to get…
0
votes
1 answer

Azure Container Instance with Terraform - multiple secrets volumes

I've got the following Terraform code to deploy Azure Container Instances from some json variable: resource "azurerm_container_group" "aci" { count = length(var.ContainerInstances) name =…
ossentoo
  • 1,675
  • 2
  • 20
  • 44
0
votes
1 answer

Docker-Selenium Grid 4 with Video recording on Azure Container Instances: Cannot open display error

Given yaml file definition.yml with definition of containers apiVersion: 2019-12-01 location: germanywestcentral name: nameforcontainergroup properties: containers: - name: selenium-hub properties: image:…
0
votes
1 answer

Why application in Azure Container Instance cannot connect to Azure SQL DB for PostgreSQL?

I have Python application in Azure Container Instance, which tries establish connection to Azure DB for PostgreSQL, but failing. Azure DB firewall is open for Azure services. Connection works fine, when application is connecting from local machine…
Kenny_I
  • 2,001
  • 5
  • 40
  • 94
0
votes
1 answer

using https with flask and gunicorn on Azure Container Instance

I have flask web app deployed using Flask and Gunicorn on an Azure Container Instance with the following files app.py from flask import Flask, Response, jsonify, request from .errors import errors app =…
amro_ghoneim
  • 495
  • 1
  • 4
  • 14
0
votes
1 answer

Why is SQL Server 2019 container (deployed in Azure Container Instances) not able to accept connections right after it has started?

Using docker compose (and ACI integration), I start services to be run in Azure Container Instances. One of the service is SQL Server 2019 docker container. It takes a moment to get the containers up and running. However, even if the SQL Server…
0
votes
2 answers

AKS LoadBalancer service creating spurious network traffic

I’m attempting to deploy an SFTP server using python / paramiko into AKS. This deployed successfully into a bare metal dev server, however I am having issues deploying this into AKS. The problem starts when creating the LoadBalancer service, this…
Belly Buster
  • 8,224
  • 2
  • 7
  • 20
0
votes
1 answer

Connecting Azure Container instances with AKS pods via the AKS dns

I am not able to reach the DNS server in k8s from Azure Container instances context: I have 2 pods in an Azure AKS Kubernetes cluster. Pod1: name = pod1, internal IP = 10.34.33.112 Pod2: name = pod2, internal IP = 10.34.33.155, Cluster IP =…
Patrick
  • 107
  • 11
0
votes
1 answer

Run interactive Powershell in Windows Azure Container Instance

I can create a container group with: az container create --os-type windows --resource-group dev --name win-sandbox --image mcr.microsoft.com/windows/servercore:1809 Then running ⬇️ it just exits immediately, but I would like an interactive…
davetapley
  • 17,000
  • 12
  • 60
  • 86
0
votes
1 answer

Private Endpoint in ACI not available for germanywestcentral?

I am facing a issue that containers which should only have private endpoints cannot be deployed "The requested resource is not available in the location 'germanywestcentral' at this moment. Please retry with a different resource request or in…
0
votes
1 answer

Docker compose in Azure: Can't connect to database

I'm trying to get SteVe OCPP server to run in an Azure Container Instance. But the web application won't connect to the database when running docker-compose up in an Azure ACI context. It runs just fine locally. Here's the docker compose…
Oystein
  • 1,232
  • 11
  • 26
0
votes
1 answer

Access Azure Container Instance from Azure App Service (Web App)

I've a microservice that runs on a Azure Container Instance, and a WebApp that run on App Service. I want my WebApp to call my microservice (that is private). I've created a virtual network (v-net) with a subnet. But Azure says my two services…