Deploying Prometheus Image to Azure Container Registry Using Azure CLI

suryabhansv

Suryabhan Singh Vaghela

Posted on July 11, 2022

Deploying Prometheus Image to Azure Container Registry Using Azure CLI

Less Talk , More Code

Goal :

  • Create Prometheus 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 Prometheus Image from DockerHub
docker pull prom/prometheus:latest

#Then Push into Azure Container Registry
docker tag prom/prometheus:latest $ACRUrl/prometheus:SuryaLatest
docker push $ACRUrl/prometheus:SuryaLatest
Enter fullscreen mode Exit fullscreen mode

Result

1

2

💖 💪 🙅 🚩
suryabhansv
Suryabhan Singh Vaghela

Posted on July 11, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related