Created
October 12, 2022 13:05
-
-
Save ukcoderj/f37d481cd4e1a39db95669246d65cdc3 to your computer and use it in GitHub Desktop.
Azure Container Registry Push
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From solution level: | |
containerRegistryName = The name of the container registry you create in Azure (acr) | |
acrRepositoryName = The individual repository within acr (e.g. my-microservice-app) | |
# Note build is from solution level. You might just need './Dockerfile .' | |
docker build -t {acrRepositoryName}:latest -f ./VsProjectName/Dockerfile . | |
az login | |
az acr login --name {containerRegistryName} | |
docker tag {acrRepositoryName}:latest {containerRegistryName}.azurecr.io/{acrRepositoryName}:latest; | |
docker push {containerRegistryName}.azurecr.io/{acrRepositoryName}:latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment