I'm working on an application that needs to start a container whenever a message is received on a message queue. To do so I decided to use an Azure Logic App for monitoring the queue and Azure Container Instances for running the containers.
The logic app is very simple, it consists of the following steps:
- Monitor the queue
- Start a container via the "Create Container Group"-connector.
This works very well for public containers. However, now I want to switch to containers in my private Container Registry and I run into an authentication issue with the Container Registry:
"The image 'something/somethingstub:latest' in container group '' is not accessible. Please check the image and registry credential.""
I have tried to authenticate with the registry by configuring the "imageRegistryCredentials" options as described here. But that did not help.
Does anyone have any pointers on how to proceed?