File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ stages:
3030 dockerfilePath : ' $(System.DefaultWorkingDirectory)/src/authorization/Dockerfile'
3131 dockerServiceConnection : ' Docker_Hub_Connection'
3232 shouldPushToAcr : true
33+ shouldPushToDockerHub : true
3334 acrRegistryUrl : ' acrsharedd01.azurecr.io'
3435 acrServiceConnection : ' Azure_ACR_Connection'
3536 workingDirectoryForDocker : ' $(System.DefaultWorkingDirectory)/src'
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ stages:
2929 imageRepository : ' consumer-service'
3030 dockerfilePath : ' $(System.DefaultWorkingDirectory)/src/consumer/Dockerfile'
3131 dockerServiceConnection : ' Docker_Hub_Connection'
32+ shouldPushToDockerHub : true
3233 shouldPushToAcr : true
3334 acrRegistryUrl : ' acrsharedd01.azurecr.io'
3435 acrServiceConnection : ' Azure_ACR_Connection'
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ stages:
2929 imageRepository : ' sender-service'
3030 dockerfilePath : ' $(System.DefaultWorkingDirectory)/src/sender/Dockerfile'
3131 dockerServiceConnection : ' Docker_Hub_Connection'
32+ shouldPushToDockerHub : true
3233 shouldPushToAcr : true
3334 acrRegistryUrl : ' acrsharedd01.azurecr.io'
3435 acrServiceConnection : ' Azure_ACR_Connection'
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ stages:
6363 imageRepository : ' auth-service'
6464 dockerfilePath : ' $(System.DefaultWorkingDirectory)/src/authorization/Dockerfile'
6565 dockerServiceConnection : ' Docker_Hub_Connection'
66+ shouldPushToDockerHub : true
6667 shouldPushToAcr : true
6768 acrRegistryUrl : ' acrsharedd01.azurecr.io'
6869 acrServiceConnection : ' Azure_ACR_Connection'
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ stages:
6363 imageRepository : ' consumer-service'
6464 dockerfilePath : ' $(System.DefaultWorkingDirectory)/src/consumer/Dockerfile'
6565 dockerServiceConnection : ' Docker_Hub_Connection'
66+ shouldPushToDockerHub : true
6667 shouldPushToAcr : true
6768 acrRegistryUrl : ' acrsharedd01.azurecr.io'
6869 acrServiceConnection : ' Azure_ACR_Connection'
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ stages:
6363 imageRepository : ' sender-service'
6464 dockerfilePath : ' $(System.DefaultWorkingDirectory)/src/sender/Dockerfile'
6565 dockerServiceConnection : ' Docker_Hub_Connection'
66+ shouldPushToDockerHub : true
6667 shouldPushToAcr : true
6768 acrRegistryUrl : ' acrsharedd01.azurecr.io'
6869 acrServiceConnection : ' Azure_ACR_Connection'
Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ param (
2323
2424$ErrorActionPreference = " Stop"
2525
26+ # Variable to use modern Docker BuildKit
27+ $env: DOCKER_BUILDKIT = " 1"
28+
2629$InitDirectory = Get-Location
2730
2831Write-Output " Changing directory to $WorkingDirectory "
You can’t perform that action at this time.
0 commit comments