Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ukcoderj/f37d481cd4e1a39db95669246d65cdc3 to your computer and use it in GitHub Desktop.
Save ukcoderj/f37d481cd4e1a39db95669246d65cdc3 to your computer and use it in GitHub Desktop.
Azure Container Registry Push
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