-
Notifications
You must be signed in to change notification settings - Fork 0
Hello world: docker pull push
phaledang edited this page Jan 2, 2024
·
3 revisions
Cd "C:\le\code\practice\NetDocker2\NetDocker2"
az aks install-cli
az login
az acr login --name $registryName
$loginServer='letestazureregistry.azurecr.io'
$registryName="letestazureregistry"
docker pull mcr.microsoft.com/hello-world
docker tag mcr.microsoft.com/hello-world /hello-world:v1
docker tag mcr.microsoft.com/hello-world letestazureregistry.azurecr.io/hello-world:v1
docker push letestazureregistry.azurecr.io/hello-world:v1
$loginServer='letestazureregistry.azurecr.io'
docker run $loginServer/hello-world:v1


