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

Best way to run .exe file in Azure?

I have an .exe application that outputs a file into the folder path you give as an input. The end goal is to get the output file into blob storage. I have considered azure functions but not sure if it is possible to provide it with a folder path ...…
-1
votes
1 answer

.NET Core throws Kestrel error on startup when using Azure Container Instances, Caddy

I'm fumbling through my first exploration into docker containers with .NET. My local development environment is good to go - I've got my dev certs created and specified in my configuration file. However, I'm trying to deploy to Azure Container…
Santi
  • 416
  • 4
  • 21
-1
votes
1 answer

Docker for custom build process

I have an executable that performs a number of tasks such as: Copy .NET source code to a directory Run another executable that modifies the source code Run MSBuild to build the code Publish the code Run add-migration to create database Run another…
MG123
  • 402
  • 2
  • 14
-1
votes
1 answer

Fix IP adress cannot is not taken from YAML container deployement

I have a YAM file which deploy a container into a subnet. The idea to to be able to define a fix IP address for my containers when it start For that I have define the IP entry as seen in following screen shot…
-1
votes
1 answer

Azure : Error 404: AciDeploymentFailed / Error 400 ACI Service request failed

I am trying to deploy a machine learning model through an ACI (Azure Container Instances) service. I am working in Python and I followed the following code (from the official documentation :…
-1
votes
1 answer

creation of ACI service in azure cloud

I am trying to created an ACI service in Azure cloud using an Artifactory image. Error message-The image 'xxx-docker/app-foresight/jmeter' in container group 'foresight' is not accessible. Please check the image and registry credential.
-1
votes
1 answer

Docker image (jboss/jbpm-server-full:latest) with custom styles and custom background image

We are hosting docker image (jboss/jbpm-server-full:latest) on Azure container service to bring the Rules capabilities into our project. We need to customize the look & feel of the UI like change the font color,background image etc.Is there a way to…
-1
votes
1 answer

Is windows server required to build server images?

Very simples .Net5.0 Dockerfiles, builds and runs fine on Windows 10 20H2. But when I push the image to Azure Container, it errors with New-AzContainerGroup: Unsupported windows image version. Which sounds like I pushed Windows 10 and not server. Do…
Chris Auer
  • 1,405
  • 12
  • 23
-1
votes
1 answer

Need to change Azure Storage account containers and blob access levels to private

I need to change storage account container and blob access level to private. I have more than 200 storage accounts and more than 1000 containers in my subscription. Please suggest quick solution to do the same. Thanks in advance
-1
votes
1 answer

MongoDb in Azure Container Instance Fails after some time

I have mongoDB running in Azure Container Instance. DB run constantly and it was OK, but it happens 2 times that container went in Failed state. The Fail state happened in time range of one month. This is my Dockefile: FROM ubuntu:xenial # Update…
alterego
  • 322
  • 1
  • 3
  • 11
-1
votes
1 answer

Install python package in Azure

I want to run a docker image in azure as a container. In visual studio Code everything works fine. But azure has problems with "from azure.servicebus import QueueClient" I get the errormessage: "File "./main.py", line 11, in from…
-1
votes
1 answer

Python ML Deployment Fails on Azure Container Instance

I have same problem as Why does my ML model deployment in Azure Container Instance still fail? but the above solution does not work for me. Besides I get additional errors like belos code": "AciDeploymentFailed", "message": "Aci Deployment failed…
-2
votes
1 answer

deploy container instance using azure VM image

I have captured the virtual machine and taken an image (generalized). I need to use that image to deploy the container. How to convert the VM image to a docker image or any other way?
1 2 3
43
44