Questions tagged [azure-container-service]

15 questions
2
votes
0 answers

Docker compose project in Azure with multiple yaml files?

I am currently constructing a docker project that is to be quite generic in question, to work with several of our sites. The way I have solved that is to have multiple docker-compose yaml files, one main file containing all common configuration and…
2
votes
1 answer

How can I improve create/launch time of an Azure Container Instance?

I keep reading that Azure Container Instances can be "spun up in seconds". However, my tests have shown that even the simplest (smallest) containers are taking around 45 secs to launch. Is this typical? This container launches on my desktop pretty…
dommer
  • 368
  • 1
  • 5
  • 13
2
votes
1 answer

Registration of Azure Resource Provider hangs indefinitely

I'm just starting to look into Azure and AKS. In order to do this, I have to enable a bunch of resource providers. I did this using the Azure CLI, like so: az provider register -n Microsoft.Network az…
Gustavo Maia
  • 391
  • 1
  • 4
2
votes
1 answer

Expose Container in virtual network to public Azure

I have an Azure cosmos DB instance configured to allow access from a private virtual network: icy-horizon. I also have an API deployed using Azure Container Instances with port 80 exposed attached to icy-horizon network as it needs to communicate…
1
vote
1 answer

Azure solution for TCP Socket server

We have a TCP socket server that retrieves data from various IoT devices, processes it and outputs it to an azure database. Right now it's being hosted on an Azure Linux VM. However would putting it in a function app or container service be more…
Isaac
  • 113
  • 3
1
vote
1 answer

docker node ls is showing only master node in Azure

I have created container environment in Azure. However, while running docker node ls, it is only showing LEADER node. but not showing agent node here. Please help. Thanks
1
vote
1 answer

How to use a POSIX-compliant volume in Azure Container Instances

Some Docker images like postgres and gitlab/gitlab-ce require the ability to set permissions and ownerships on files and directories, however this does not appear to be supported on Azure Container Instances (see here, here, here) due to the file…
0
votes
2 answers

azure container registry allow pull without login

We need to setup public docker repository, and trying to use azure container registry, but turns out you need to login to pull images from it, is there any way to avoid login for pull?
0
votes
1 answer

Setup Azure Container Instance with Multiple Volume Mounts

I am trying to setup a zookeeper container in Azure. I want it to use three different Azure File Shares. One is for the zookeeper configuration, one is for data, and one is for logs. Because of the multiple mounts, I have to use an ARM template for…
fizch
  • 101
0
votes
0 answers

How to update security patches in azure container registry automatically?

Scenario: There is an azure container registry(acr) with many repositories (around 20) Each repository has different tags like image:dev0.1, dev0.2, prod0.1, prod0.2 There are more than 100 images which include all available tags within each…
shaik moeed
  • 101
  • 3
0
votes
0 answers

How to run IPFS Cluster on Azure Container Apps?

I am wondering if we can build an IPFS Cluster per the following docker-compose.yml file on Microsoft Azure Container Apps platform: version: '3.4' # This is an example docker-compose file to quickly test an IPFS Cluster # with multiple peers on a…
Arash
  • 103
  • 1
0
votes
1 answer

How can I mount a user-specific file share on an Azure Container Instance without incurring per-transaction costs?

We host a web-based IDE that runs in a container. I'm using ACI to host the container instances. I need to mount the user's files in the container, and make sure the user cannot access other users' files. An individual user is not expected to go…
Ben Davis
  • 250
  • 1
  • 4
  • 16
0
votes
0 answers

Azure container instance receives tremendous traffic even right after its creation

I've created an Azure container instance with MSSQL container image. It starts. However before even login, or even putting the URL in to use, I've checked the container logs and it's being hit with traffic. As this is a MSSQL DB server, it receives…
0
votes
1 answer

The provided location 'francecentral' is not available for resource type

Describe the bug I am following instructions at https://docs.microsoft.com/en-gb/azure/container-registry/container-registry-tutorial-quick-task When I issue the following command on a resource group in France Central Region az container create…
eliassal
  • 101
0
votes
1 answer

Azure microservices deployment

I want to develop and host my portfolio on Azure, since I have free money every month thanks to the MSP Program. My portfolio will be made of 3 services: a frontend app using React a backend app using Asp.Net Core a database for storing articles…