Results 25 comments of Bin Du

@Pragneshn if you still encounter the issue, can you please open a support ticket https://aka.ms/acr/support/create-ticket?

@brightonk @hluckenbaugh please open the support ticket if the problem still persists. https://aka.ms/acr/support/create-ticket Azure support team will help collect the registry detail to troubleshoot.

@cvs79 ACR allows lock on repository. Is it what you are looking for? Use the [az acr repository update](https://docs.microsoft.com/en-us/cli/azure/acr/repository#az_acr_repository_update) command to set repository attributes so you can: **Lock an image...

@michiels We are experimenting the layer cache with buildx. Check out the PR #230 is you are interested.

Thanks for the feedback. We don't have plan to support docker-compose. But if you have image with docker-compose cli installed. You can try to run docker-compose using multi-step yaml file...

@geoffreygeslin, it looks you used a Dockerfile as a multi-step task file. They're different. For you case, you first need to push the source code including Dockerfile to GitHub or...

You only need "build" and "push". You don't need "import" if you already have the base image in your registry.

Prerequisite 1. Enable Content Trust on the registry. az acr config content-trust update --name $REGISTRY_NAME --status enabled 2. Create a service principal and assign acrpush and AcrImageSigner role. REGISTRY_ID=$(az acr...

@Akshay04 please open the support ticket if the problem still persists. https://aka.ms/acr/support/create-ticket Azure support team will help collect the registry detail to troubleshoot.

@kuwe1990, can you elaborate a little bit "re-tag a layers to the same registry" and "trigger acrTask when the new tag get update"? Assume you have a base image `myimage:tag1`...