Goal :
- Create Grafana Image to Azure Container Registry using Azure CLI
Result
- Private Container Image rather than Public Docker Hub Image.
Script
$ResourceGroupName = "suryarg"
$LocationName = "eastus2"
$ACRName = "suryacr"
$ACRUrl = "$ACRName.azurecr.io"
#Create a resource group
az group create --name $ResourceGroupName --location $LocationName
#Create a container registry
az acr create --resource-group $ResourceGroupName --name $ACRName --sku Basic --admin-enabled true
#Log in to Azure Container Registry
az acr login --name $ACRName
#First Pull latest Grafana Image from DockerHub
docker pull grafana/grafana:latest
#Then Push into Azure Container Registry
docker tag grafana/grafana:latest $ACRUrl/grafana:SuryaLatest
docker push $ACRUrl/grafana:SuryaLatest
Result
Top comments (1)
The Azure Container Apps service enables me to run microservices and containerized applications on a serverless platform. With Container Apps, I enjoy the benefits of running containers . Spells to make someone go away
Some comments have been hidden by the post's author - find out more