-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
77 lines (68 loc) · 2.54 KB
/
Jenkinsfile
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
pipeline {
agent any
tools {nodejs "node:20.5.1-pnpm"}
stages {
stage('set .env') {
steps {
script {
echo "${params.ENV_PROD}"
echo "${params.AWS_ECR_URL}"
sh "echo '${params.ENV_PROD}' > .env"
sh "cat .env"
}
}
}
stage('Test docker image build') {
steps {
sh "npm run docker:build:test"
}
}
stage('Test') {
steps {
sh "npm run docker:test"
}
}
stage('Build Production docker image') {
steps {
sh 'npm run docker:build'
}
}
stage('Deploy - Production docker image') {
steps {
sh "docker tag er-front:latest ${params.AWS_ECR_URL}:latest"
sh "docker push ${params.AWS_ECR_URL}:latest"
}
}
stage('Update ECS Cluster') {
steps {
script {
def clusterName = 'er-front-cluster' // ECS 클러스터의 이름
def serviceName = 'er-front' // 업데이트할 ECS 서비스의 이름
def region = "ap-northeast-2"
sh "aws ecs update-service --cluster ${clusterName} --service ${serviceName} --region ${region} --force-new-deployment"
}
}
}
}
post {
always {
script {
// 모든 컨테이너 중지 및 삭제
sh "docker stop \$(docker ps -a -q) || true" // 에러 발생시 스킵
sh "docker rm \$(docker ps -a -q) -f || true" // 에러 발생시 스킵
// 모든 네트워크 삭제
sh "docker network prune -f"
// 모든 볼륨 삭제
sh "docker volume prune -f"
// 모든 이미지 삭제 (이미지를 사용하는 컨테이너를 먼저 중지하고 삭제해야 함)
def excludeImages = "node:20-alpine" // 제외할 이미지 목록
def imagesToDelete = sh(returnStdout: true, script: "docker images -q | grep -vE '${excludeImages}'").trim()
if (imagesToDelete) {
imagesToDelete.tokenize().each { imageId ->
sh "docker rmi -f ${imageId} || true" // 이미지가 없으면 에러 발생시 스킵
}
}
}
}
}
}