I have a Azure Container Registry created in one ...
# general
a
I have a Azure Container Registry created in one project and I'm going to use it in another project to publish a docker image. How can I get the registry in the second project to be able to build a docker image in it? This is my ACR:
Copy code
const acr = new azure_native.containerregistry.Registry("acr", {
                registryName: acrname,
                resourceGroupName: resgrpName,
                sku: {
                    name: "Premium"
                },
                adminUserEnabled: false
            });