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 ACI Wordpress Template Error establishing a database connection

Hello Azure Container guru's I'am trying to configure the following Azure Container Setup: My first step (for simplicity) is the creation off 2 containers within a single container group on azure (without the fileshare). I create the following…
0
votes
1 answer

Error when trying to start Azure Container Instance using Invoke-AzResourceAction: No HTTP resource was found that matches the request URI

I am trying to start an Azure Container Instance using a PowerShell task in a YAML pipeline: - task: AzurePowerShell@5 displayName: Start container instances inputs: azureSubscription: ${{ parameters.Subscription }} …
bmolsbeck
  • 51
  • 5
0
votes
1 answer

Why cant i simply create a Business Central container in Azure?

Im trying to create a Business Central container in Azure and am using the following in powershell. $imageName = “mcr.microsoft.com/businesscentral:10.0.17763” $resourceGroup = “d365rg” $location = “EastUS” $containerName = “d365bcdemo02” …
0
votes
1 answer

Azure app service for containers is forwarding https requests as http to my container

I have dockerized asp.net core application that I'm deploying on azure app service for containers. The app listens on port 80 for http and port 443 for https: FROM mcr.microsoft.com/dotnet/aspnet:5.0-alpine as runner ENV…
0
votes
1 answer

Safest way to give Pull-Only rights to a third party for your private Azure Docker Registry

We created a private registry under our Azure account and now trying to make these images available to a number of third parties temporarily (1 month or 1 year). What would be the safety way to give a third party only the AcrPull rights without…
0
votes
2 answers

Does the imagename and artifacturl in creating containerimages in Azure need to be the same?

I am running the following in Powershell to create a Business Central Container in Azure $imageName = "mcr.microsoft.com/businesscentral/sandbox:16.2.13509.23270-us"; $resourceGroup = "RG1"; $location = "westeurope" $containerName = "d365bcrg1" …
Abbey
  • 153
  • 2
  • 11
0
votes
3 answers

Getting error while adding "node.name" as a variable for elastic search in azure container instances

I am deploying elasticsearch container instance but when I am adding the environment variable "node.name" I am getting the below error The environment variable name in container 'dev-elasticsearch' of container group 'devt-elasticsearch' is invalid.…
so9868
  • 105
  • 10
0
votes
1 answer

Why does my Azure Container Instance suddenly lose the ability to pull the images after a few days?

I have successfully created an Azure Container Instance, which contains two containers. Both of these containers are stored in an Azure Container Registry. Startup goes fine, the images get pulled from the registry and my containers are running. The…
0
votes
1 answer

Can't acccess web api (Azure Container instances)

I have pushed the following image to the registry in Azure: #See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. FROM mcr.microsoft.com/dotnet/aspnet:5.0-buster-slim…
Bryan
  • 3,421
  • 8
  • 37
  • 77
0
votes
1 answer

Keycloak docker

how can I deploy Keycloak docker in an azure container instance? keycloak docker image that is provided by jboss/keyckloak keeps restarting in azure container instance after deployment. need help
Adam Fuzum
  • 41
  • 3
0
votes
1 answer

How can i get the latest Business Central Docker image?

I am deploying to Azure a Business Central Docker image . where can i find the details for --image tag I am using --image mcr.microsoft.com/businesscentral/sandbox:base (but this give msg its over 90 days …
0
votes
1 answer

Azure Containers deployment - "Operation failed with status 200: Resource State Failed"

From Azure we try to create container using the Azure Container Instances with prepared YAML. From the machine where we execute az container create command we can login successfully to our private registry (e.g…
0
votes
2 answers

VSCode ACI deployed Docker containers not showing in sidebar

I am new to working with containers, and was doing the docker/vscode tutorial (https://learn.microsoft.com/en-us/visualstudio/docker/tutorials/deploy-to-cloud). The following issue has arisen during deployment (Step 9 of tutorial): Containers…
0
votes
1 answer

Stop Flask app when not in use on Azure Container Instance

I made a test flask application that looks like the following: from flask import Flask from flask_cors import CORS import os app = Flask(__name__) CORS(app) @app.route('/') def hello_word(): return 'hello', 200 if __name__ == '__main__': …
bobob
  • 103
  • 1
  • 9
0
votes
0 answers

Scheduling run and restart of container instances in Azure

I have a three container group running on Azure, and an additional run once container which I'm aiming to run once a day to update data on a file mount (which the server containers look at). Additionally I'm looking to then restart the containers in…