ae4d1d0f29
Adding Microsoft SECURITY.MD |
||
---|---|---|
.vscode | ||
docs/assets | ||
src | ||
.gitattributes | ||
.gitignore | ||
LICENSE.txt | ||
README.md | ||
SECURITY.md |
README.md
Azure Container Registry Web Manager
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.
Running locally in Docker
$ docker run -it -p 5000:80 azurecr/web-manager
Build instructions
Make sure you have installed dotnet core 3.0
$ cd src/WebManager/app
$ npm install
$ cd ..
$ dotnet restore
$ dotnet run
Buiding and running the Docker image:
$ cd src/
$ docker build -t acrmanager -f WebManager/Dockerfile .
$ docker run -p 5000:80 -it --rm acrmanager