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

Azure Container Instances - from where to execute "docker login" before we execute "az container create" command

we need to deploy ACI - Azure Container Instance in private virtual network. We followed the example and prepared YAML file from this link. https://learn.microsoft.com/en-us/azure/container-instances/container-instances-vnet So now we need to…
0
votes
1 answer

Azure Go SDK for stopping an instance and restarting it

Description I wanted to perform the following task using GO SDK for which I couldn't found any good example: Establishing Connection with Azure Stopping a VM instance Restarting the VM instance The first part is establishing the connection for…
0
votes
1 answer

How to add multiple containers in Azure Storage Container task in Azure Devops

I want to add multiple containers to Container Name section in Azure Storage container task in Azure Devops. I want to create 5 containers and provide list of container name. Thank you
Amruta
  • 701
  • 4
  • 15
  • 38
0
votes
1 answer

Start a container in Azure Container Instances for a predetermined period of time

I’m trying to achieve the following in Azure: allow users to programmatically spin up a docker container for a predetermined period of time after which the container is automatically stopped. The aim is to avoid the costs of idle containers that are…
0
votes
1 answer

how to authorize azure container registry in java to get list of repos and images under that

I have Azure container registry, My use case is through java code I want to get all the repos of azure container registry instance. From each repo I need the list of all container images Want to push the container images and pull the container…
0
votes
1 answer

Azure container instance execution time

I have created azure container instance, which do some jobs. I have not founded, where I could see how long azure container instance executes job?
Alexander
  • 331
  • 1
  • 2
  • 11
0
votes
1 answer

Azure container instance, yaml files isnt accepting command when json value is passed

I am trying to run an container using YAML file and command to run the image is: command: [ "/bin/bash", "-c", "python /home/indy/.pyenv/versions/3.6.9/bin/aca-py start -it http 0.0.0.0 10000 -ot http --admin 0.0.0.0 5000 --wallet-type indy…
yatharth meena
  • 369
  • 4
  • 13
0
votes
1 answer

docker compose on azure: volume definition is not accepted

when doing a docker compose up of a multi container app, I get an error about my volumes definition: services.volumes Additional property nginx is not allowed. in my docker-compose.yaml, I defined the volumes as prescribed by…
hegenious
  • 3
  • 3
0
votes
3 answers

Windows Container in Azure and Network

I have an old legacy application listening to some tcp ports and written in visual c++ and strictly bound to run on windows. On Prem the application is running fine within a windows server core container. But now I have to deploy this container to…
0
votes
1 answer

Azure function app with powershell cannot start container instances

There is a resource group with two important resource types: first one is a Container Instances (Linux). Second one is a Function App (Powershell, Windows). A function from the latter should start the former but it throws an error: Cannot bind…
tomab
  • 2,061
  • 5
  • 27
  • 38
0
votes
1 answer

How to create a network profile in Azure Fluent?

The REST client here createorupdate shows how to create a network profile, but there doesn't seem to be any corresponding code in Azure Fluent. When creating a Container Instance in Azure CLI, it automatically creates a Network Profile, but the…
0
votes
1 answer

Copy file to Docker volume in Azure context

I run these docker commands locally to copy a file to a volume, this works fine: docker container create --name temp_container -v temp_vol:/target hello-world docker cp somefile.txt temp_container:/target/. Now I want to do the same, but with…
ps0604
  • 1,227
  • 23
  • 133
  • 330
0
votes
1 answer

Turn off azure container monitoring

Looking into the cost management apparently, we are exceeding the limits on our Storage Account, photo on this link. From what I researched it is due to the fact that Azure by default does a lot of requests for "insights" on performance /…
0
votes
1 answer

Azure container instance, to stop after data processed and start back for every one hour

I have feed job as a pod on AKS, triggered by Logic App for every one hour. Purpose- The data will be processed and updated on Azure blob storage. Planned to move this to Azure container instance(ACI) , so have automated via Jenkins to deploy the…
0
votes
1 answer

Docker images version change do not trigger terraform container update

I'm using terraform to create container on Azure using azure_container_group. My container is based on a docker image stored on a private registry. When I update this image by pushing a new version with the latest tag my docker image have a new…