Skip to content

Commit 2e35b35

Browse files
committed
Use pool syntax
1 parent b1e3f55 commit 2e35b35

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

azure-pipelines.acr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Build Docker image for this app using Azure Pipelines
22
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker?view=vsts
3-
4-
queue: 'Hosted Linux Preview'
3+
pool:
4+
vmImage: 'Ubuntu 16.04'
55

66
variables:
77
imageName: 'nodejssample:$(Build.BuildId)'

azure-pipelines.docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Build Docker image for this app using Azure Pipelines
22
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker?view=vsts
3-
4-
queue: 'Hosted Linux Preview'
5-
3+
pool:
4+
vmImage: 'Ubuntu 16.04'
5+
66
variables:
77
imageName: 'nodejssample:$(Build.BuildId)'
88
# define two more variables dockerId and dockerPassword in the build pipeline in UI

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Build NodeJS Express app using Azure Pipelines
22
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript?view=vsts
3-
4-
queue: 'Hosted Linux Preview'
5-
3+
pool:
4+
vmImage: 'Ubuntu 16.04'
5+
66
steps:
77
- task: NodeTool@0
88
inputs:

0 commit comments

Comments
 (0)