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

Create a Azure Instance group from Release pipelines

I am doing a release pipeline and I cant find a way to use a yaml file during the task of my agent. What is the best practice to create a Azure Container Group during a release pipeline? I have been looking for documentation at microsoft and cant…
0
votes
2 answers

ACI sql server container drops databases after restart

I have running sql server container with a file storage persistence in Azure instance container(ACI). The sql server have some database connected located in the file storages and it is working perfectly until the container restart. After restart…
0
votes
1 answer

Azure container instance with git redeployment scheme similar to Azure Web Service

I want to run a python script continuously on a container instance. I could create a docker container and update my private registry, but it seems like overkill to have to make a new image every time I change the source code. I like how Azure…
Pali
  • 77
  • 7
0
votes
1 answer

Running ACI with SQL Server on premises

I have a container (linux .NET Core) running in Azure. This application reads from Azure Service Bus and writes information in a database on-premises. The connection to ASB is working fine but when the application tries to connect to SQL Server, I…
Catinodeh
  • 301
  • 3
  • 16
0
votes
0 answers

EXE runs in local Docker container but on Azure

I have an internal application that I would like to run on a bunch of Azure Container Instances. The application requires .Net 4.7.2, as well as an internal SDK. I have managed to get this to run on my local Docker container, but as soon as I push…
devza
  • 151
  • 1
  • 6
0
votes
2 answers

Docker Container Instance fails to start in Azure

I have a .Net 4.7.2 application that I am trying to run in a Container Instance in Azure. When built and launched locally, it works just fine. When deployed though, it fails to start. I have no logs (at least, not any that I know exist). This is my…
devza
  • 151
  • 1
  • 6
0
votes
1 answer

Remote VS Code development with code-server

I have deployed the image https://hub.docker.com/r/codercom/code-server which is remote VS code in Azure containers. But now if I want to open any Project(Eg: Angular Project with node and angular cli setup)in that VS Code and develop remotely how…
0
votes
1 answer

Two Images Running in 1 Container in Azure Container Instance

I have two images uploaded into the same Azure Container Registry and the same repoistory. How do I run these two images together in a same container. Thanks in advance :) Currently this is my YAML code. apiVersion: 2018-10-01 location:…
0
votes
1 answer

Azure container instance is automatically stopping after few seconds

I am new to Azure Container Instances, I created an azure container with public docker image of Solace form Docker Hub(https://hub.docker.com/r/solace/solace-pubsub-standard). Process completed without error, but instance is automatically stopping…
Pranav Singh
  • 17,079
  • 30
  • 77
  • 104
0
votes
1 answer

can i run a Windows IIS ACI and connect to an Oracle ACI both running in Azure?

I am getting the following error in Azure when creating a Windows ACI on a virtual network in Azure: "The requested resource is not available in the location 'westeurope' at this moment. Please retry with a different resource request or in another…
0
votes
1 answer

Azure Container Instances Islolate containers in side group

I want to be able to deploy an ACI container group but I want none of the containers in the group to be able to communicate with one another. According to the documentation, containers can communicate on any port even if it's not exposed. Is there a…
Ryan
  • 4,354
  • 2
  • 42
  • 78
0
votes
1 answer

Add HTTPS "layer" to Azure Container Instance

I'm running InfluxDB in Azure Container Instance. Influx has capabilities to enable HTTPS, however I'm looking for some service in Azure that will make it easier for me to manage certificates. With Influx built-in HTTPS support, I'd have to deploy…
mnj
  • 2,539
  • 3
  • 29
  • 58
0
votes
1 answer

What directories do containers launched in Azure Container Instances have read access to?

My goal is to run a python script, which is passed to a docker container containing source code and dependencies. This is to be run using Azure container instances (ACI). On my home machine I can do this in docker (setting ENTRYPOINT or CMD to…
elltrain
  • 82
  • 4
0
votes
1 answer

Azure container instance run bash command

I am running an R Shiny app inside a container in Azure Container Instance. Via a DevOps pipeline whenever I change the source code of my App, I recreate the container in the Build pipeline and update the Container Instance via an Azure Cli command…