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

How do I get my SQL Server database to work with my deployed REST API on Azure?

I containerized my .NET Core REST API app with Docker, ran it locally and everything worked fine. However, now that I deployed my container to Azure (using Container Instance), my API endpoints are not responding anymore. All of my endpoints query…
0
votes
1 answer

Spawn containers on ACI using @azure/arm-containerinstance

I am working on processing data microservice. I have this microservice dockerized and now I want to deploy it. To achieve it, I am trying to manage containers in Azure Container Instances using Azure Function written in node.js. The first thing I…
Łukasz Szcześniak
  • 1,417
  • 11
  • 23
0
votes
1 answer

How to access the Node-Red Settings file when running Node-Red Docker Container in an Azure Container Instance

I have deployed Node-Red to an Azure Container Instance using the standard Node-Red image found at Docker Hub. I would like to secure: access to the editor access to existing HTTP In nodes, used to create a simple API end-point I am considering to…
0
votes
1 answer

Scale Celery app on ACI based on tasks in queue

We need celery to scale in order to avoid long queues on limited celery workers and instead spawn new celery containers in ACI to distribute those tasks. In order to achieve this scaling (spawning of new celery containers in ACI), we need to know…
0
votes
1 answer

Azure Container Instances: Create a multi-container group from Django+Nginx+Postgres

I have dockerized a Django project with Postgres, Gunicorn, and Nginx following this tutorial. Now i want to move the application to azure container instances. Can i simply create a container group following this tutorial, and expect the container…
Pawder
  • 3
  • 2
0
votes
1 answer

AKS Taking lot of time to pull image from our private docker repository

we have hosted our application on Azure AKS, we configured auto scaling for this deployment. Pods will automatically scales. my problem here is, whenever AKS adds new nodes to cluster as part of autoscaling, our whole docker image needs to be…
0
votes
1 answer

Checking the state of a container in azure container group

I'm trying to check the state of a container in an azure container group using python. The reason for this is, we have a monitor that check our application status and restarts the container-group if the application stops responding. The problem with…
Illegal Operator
  • 656
  • 6
  • 14
0
votes
0 answers

Credentials Issue in Azure Container for images from dockerhub

I attempted to host the image from docker hub to azure and for the first time the credentials supplied went well . But after a re-start of the container , it is having credentials issue . And I'm not sure where the credentials can be supplied . Any…
Rajesh Rajamani
  • 189
  • 2
  • 14
0
votes
1 answer

backup postgresql from azure container instance

I created Azure Container Instance and ran postgresql in it. Mounted an azure container instance storage account. How can I start backup work, possibly by sheduler? When I run the command az container exec --resource-group Vitalii-demo --name…
0
votes
2 answers

How can I mount a fileshare into an azure container instance

With docker-compose I can easily mount a local directory to a directory inside my container so I can persist some files. I'm currently experimenting with azure cloud and want to do the same thing as with docker-compose in the service azure container…
0
votes
1 answer

run spring boot application on azure container registry instance

I'm trying to run a spring boot application on azure. This is what I'm trying to accomplish: local project > Azure Devops Git Repos > Azure container registry From my local, I push the changes to Azure Devops Repos. Repository has a pipeline that…
0
votes
1 answer

Can i use the New-NavContainer in powershell to host a container in Azure?

I am trying to use the following to create a container in Azure: New-NavContainer -accept_eula -containerName "test" -auth Windows -imageName "mcr.microsoft.com/businesscentral/sandbox:base" -includeCSide -enableSymbolLoading -licenseFile…
Debbie.S
  • 167
  • 11
0
votes
1 answer

Access KeyVault from Azure Container Instance deployed in VNET

Azure Container Instance is deployed in VNET and I want to store my keys and other sensitive variables in Key Vault and somehow access to it. I found in documentation, it's currently limitation to use managed identities once ACI is in VNET. Is…
alterego
  • 322
  • 1
  • 3
  • 11
0
votes
1 answer

Azure container Instance not terminated when running timer trigger

I have deployed a dockerized azure function timer trigger to azure container instance. The timer trigger is scheduled to run at 6:00 AM. It runs as expected. My problem is the container is not terminated even after the timer trigger is completed. So…
Karthikeyan VK
  • 5,310
  • 3
  • 37
  • 50
0
votes
1 answer

Connect with SSH tunnel to MongoDB in Azure Container instance under VNET

I have MongoDB deployed to Azure Container Instance. Now, I want to secure my DB by moving it under Virtual Net. How can I connect to MongoDB using SSH tunnel?
alterego
  • 322
  • 1
  • 3
  • 11