Skip to content

Commit da62dc0

Browse files
authored
Fix for failing docker build task
The docker build task docker build --tag $ACR_NAME.azurecr.io/albumapp-ui . is failing because of missing quotes. Proposing a change to include the quotes: docker build --tag "$ACR_NAME.azurecr.io/albumapp-ui" .
1 parent 6e1b211 commit da62dc0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 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
---
@@ -283,4 +283,4 @@ az group delete --name $RESOURCE_GROUP
283283
## Next steps
284284

285285
> [!div class="nextstepaction"]
286-
> [Environments in Azure Container Apps](environment.md)
286+
> [Environments in Azure Container Apps](environment.md)

0 commit comments

Comments
 (0)