-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathazure-pipelines.yml
31 lines (25 loc) · 914 Bytes
/
azure-pipelines.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
# Docker image
# Build a Docker image to deploy, run, or push to a container registry.
# Add steps that use Docker Compose, tag images, push to a registry, run an image, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker
pool:
vmImage: 'Ubuntu 16.04'
variables:
tagName: '$(Build.BuildNumber)'
imageName: '$(dockerId)/homepage:$(tagName)'
latestImageName: '$(dockerId)/homepage:latest'
steps:
- script: docker build -f Dockerfile -t $(imageName) -t $(latestImageName) .
displayName: 'docker build'
- script: |
docker login -u $(dockerId) -p $(pswd)
docker push $(imageName)
docker push $(latestImageName)
displayName: 'docker push'
- task: SSH@0
displayName: 'Run shell inline on remote machine'
inputs:
sshEndpoint: 'weihanli-vm'
runOptions: inline
inline: |
kubectl set image deployment/homepage homepage=$(imageName) --record=true