This repository was archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines-2.yml
52 lines (47 loc) · 1.91 KB
/
azure-pipelines-2.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
48
49
50
51
52
# Docker
# Build and push an image to Azure Container Registry
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker
trigger:
- main
resources:
- repo: self
variables:
# Container registry service connection established during pipeline creation
dockerRegistryServiceConnection: '17615c2d-e115-4122-9753-a0c542653d28'
imageRepository: 'marvellconsultingstatswales'
containerRegistry: 'statswalesregistry.azurecr.io'
dockerfilePath: '$(Build.SourcesDirectory)/Dockerfile'
tag: '$(Build.BuildId)'
# Agent VM image name
vmImageName: 'ubuntu-latest'
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:
containerRegistry: '$(dockerRegistryServiceConnection)'
repository: '$(imageRepository)'
command: 'buildAndPush'
Dockerfile: '**/Dockerfile'
tags: '$(tag)'
- task: AzureContainerApps@1
inputs:
azureSubscription: 'Marvell Consulting(3f7a282e-96dc-4706-9b9e-65609c29b2c8)'
acrName: 'StatsWalesRegistry'
acrUsername: 'StatsWalesRegistry'
acrPassword: '$(acr_password)'
dockerfilePath: 'Dockerfile'
resourceGroup: 'statswales-container-app-rg'
containerAppName: 'statswales-develop'
containerAppEnvironment: 'statswales-container-app-environment'
targetPort: '3000'
ingress: 'external'
imageToDeploy: 'statswalesregistry.azurecr.io/marvellconsultingstatswales:$(tag)'
environmentVariables: 'DB_HOST=$(db_host) DB_PORT=5432 DB_USERNAME=$(db_username) DB_PASSWORD=$(db_password) DB_DATABASE=$(db_database) AZURE_STORAGE_ACCOUNT_NAME=$(azure_storage_account_name) AZURE_STORAGE_ACCOUNT_KEY=$(azure_storage_account_key) AZURE_STORAGE_DIRECTORY_NAME=$(azure_storage_directory_name)'