-
Notifications
You must be signed in to change notification settings - Fork 534
/
azure-pipelines.yml
32 lines (27 loc) · 1.25 KB
/
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
32
# Docker image
# Build a Docker image to run, deploy, 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/vsts/pipelines/languages/docker
pool:
vmImage: 'Ubuntu 16.04'
variables:
imageNameS: 'service-tracker-ui:latest'
imageNameQ: 'quakes-api:latest'
imageNameW: 'weather-api:latest'
imageNameD: 'data-api:latest'
imageNameF: 'flights-api:latest'
steps:
- script: |
docker build -f app/service-tracker-ui/Dockerfile -t azcloudnative/$(imageNameS) app/service-tracker-ui
docker build -f app/quakes-api/Dockerfile -t azcloudnative/$(imageNameQ) app/quakes-api
docker build -f app/weather-api/Dockerfile -t azcloudnative/$(imageNameW) app/weather-api
docker build -f app/data-api/Dockerfile -t azcloudnative/$(imageNameD) app/data-api
docker build -f app/flights-api/Dockerfile -t azcloudnative/$(imageNameF) app/flights-api
- script: docker login -u $(dockerUser) -p $(dockerPass)
displayName: 'Docker Login'
- script: |
docker push azcloudnative/$(imageNameS)
docker push azcloudnative/$(imageNameW)
docker push azcloudnative/$(imageNameD)
docker push azcloudnative/$(imageNameF)
docker push azcloudnative/$(imageNameQ)