Questions tagged [azure-acr]

Questions about Azure Container Registry service (ACR)

Azure Container Registry is a private containers registry hosted in Azure. It can be easily integrated with other Azure Services like WebApp for Containers or Azure Kubernetes Service.

36 questions
0
votes
1 answer

Listing repository tags with Azure ACR API

I'm trying to send a GET request to https://acr-name.azurecr.io/v2/image-name/tags/list but I'm not sure which token to use, as I keep getting: { "errors": [ { "code": "UNAUTHORIZED", "message": "authentication…
Gilbert Williams
  • 970
  • 2
  • 10
  • 24
0
votes
1 answer

Logged in to ACR on the host, can I use that inside container?

We're moving our Jenkins setup to Azure. Once I have an Azure node, I run the following: az login -i az acr login -n myregistry From there, I can pull images from the registry. My container has the docker socket mapped inside and it interacts with…
MaratC
  • 6,418
  • 2
  • 20
  • 27
0
votes
1 answer

Getting unauthorised access when trying to logging in to acr

I am trying to build a gitlab-ci pipeline and push the build image to acr from gitlab. I am using the command docker login ****.azurecr.io --username 00000000-0000-0000-0000-000000000000 --password EXPOSE_TOKEN It has worked before many times but…
0
votes
1 answer

Not able to container images from ACR to Minikube vm

I have created a virtual machine on Azure and I have installed minikube on the VM with VirtualBox. I have created kubectl secret using the instructions in the following…
Sormita Chakraborty
  • 1,015
  • 2
  • 19
  • 36
0
votes
1 answer

Generate auth token for accessing CR in Java

I'm authenticating against Azure using a service principal, and I'd like to convert a shell script to Java. My shell script code essentially does this: export AAD_ACCESS_TOKEN=$(az account get-access-token --query accessToken -o tsv) export…
Grayson
  • 63
  • 1
  • 9
0
votes
0 answers

Windows containers in Azure Container Instances - which base image to use?

I'm trying to get a very simple .net core console app to run in a windows container on Azure Container Instances but I'm having soo many problems. First I attempted using the microsoft/dotnet:2.1-runtime as the base image but I can the error…
1 2
3