-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines-1.yml
47 lines (43 loc) · 1.24 KB
/
azure-pipelines-1.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
resources:
- repo: self
variables:
# Container registry service connection established during pipeline creation
dockerRegistryServiceConnection: '9e61d85f-6e13-4292-b6f9-2cd215466768'
imageRepository: 'devopsfun'
containerRegistry: 'ado22.azurecr.io'
dockerfilePath: '$(Build.SourcesDirectory)/Dockerfile'
tag: '$(Build.BuildId)'
# Agent VM image name
vmImageName: 'ubuntu-18.04'
stages:
- stage: Build
displayName: Build and push stage
jobs:
- job: Build
displayName: Build
pool:
vmImage: $(vmImageName)
steps:
- task: Docker@2
displayName: Build and push an image to container registry
inputs:
command: buildAndPush
repository: $(imageRepository)
dockerfile: $(dockerfilePath)
containerRegistry: $(dockerRegistryServiceConnection)
tags: |
$(tag)
- stage: Deploy_to_Test
displayName: Deploy to test enviroment
jobs:
- job : deploy
displayName: Deploy to test enviroment
pool:
vmImage: $(vmImageName)
steps:
- task: AzureWebAppContainer@1
displayName: deploy to test Env
inputs:
azureSubscription: 'Test RG'
appName: 'web-app-test001'
containers: 'ado22.azurecr.io/devopsfun:$(tag)'