forked from CeeyIT-Solutions/JavaWeb3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
42 lines (37 loc) · 1004 Bytes
/
Jenkinsfile
File metadata and controls
42 lines (37 loc) · 1004 Bytes
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
pipeline {
agent any
environment {
DOCKER_IMAGE = 'tobaina/java-web-calculator'
}
stages {
stage('Checkout') {
steps {
git 'https://github.com/tobaina/JavaWeb3.git'
}
}
stage('Build Docker Image') {
steps {
script {
// Build the Docker image
sh 'docker build -t ${DOCKER_IMAGE} .'
}
}
}
stage('Push to Docker Hub') {
steps {
script {
// Push the Docker image to Docker Hub
sh 'docker push ${DOCKER_IMAGE}'
}
}
}
stage('Run the Docker Container') {
steps {
script {
// Run the Docker container
sh 'docker run -d -p 8080:8080 ${DOCKER_IMAGE}'
}
}
}
}
}