The ACR Web Manager enables you to view metadata about your respositories and tags stored in your Azure Container Registry. You can find out more information about Azure Container Registry here.
$ docker run -it -p 5000:80 azurecr/web-manager
Make sure you have installed dotnet core 3.0
$ cd src/WebManager/app
$ npm install
$ cd ..
$ dotnet restore
$ dotnet run
$ cd src/
$ docker build -t acrmanager -f WebManager/Dockerfile .
$ docker run -p 5000:80 -it --rm acrmanager