Skip to content

Commit 3e57baa

Browse files
authored
Merge pull request #96886 from owingruters/patch-1
Fix for failing docker build task
2 parents 36d4555 + da62dc0 commit 3e57baa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/container-apps/communicate-between-microservices.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,13 @@ Output from the `az acr build` command shows the upload progress of the source c
129129
# [Bash](#tab/bash)
130130

131131
```azurecli
132-
docker build --tag $ACR_NAME.azurecr.io/albumapp-ui .
132+
docker build --tag "$ACR_NAME.azurecr.io/albumapp-ui" .
133133
```
134134
135135
# [PowerShell](#tab/powershell)
136136
137137
```powershell
138-
docker build --tag $ACR_NAME.azurecr.io/albumapp-ui .
138+
docker build --tag "$ACR_NAME.azurecr.io/albumapp-ui" .
139139
```
140140
141141
---

0 commit comments

Comments
 (0)