We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef9c6ba commit c6d40adCopy full SHA for c6d40ad
articles/aks/dapr-workflow.md
@@ -69,10 +69,15 @@ az group create --name myResourceGroup --location eastus
69
az acr create --resource-group myResourceGroup --name acrName --sku Basic
70
az acr login --name acrName
71
az acr list --resource-group myResourceGroup --query "[].{acrLoginServer:loginServer}" --output table
72
+```
73
+
74
+Expected output:
75
76
+```sh
77
acrName.azurecr.io
78
```
79
-Tag the [Docker image](#prepare-the-docker-image) you prepared earlier to your new ACR.
80
+Tag the [Docker image](#prepare-the-docker-image) you prepared earlier to your new ACR using the result from the ACR query:
81
82
```sh
83
docker tag ghcr.io/<your-repo>/dwf-sample:0.1.0 acrName.azurecr.io/dwf-sample:0.1.0
0 commit comments