Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
9460596
added one file
saurabhgore-code Feb 1, 2021
c1f69ed
added one file
saurabhgore-code Feb 1, 2021
24c83ea
added one file
saurabhgore-code Feb 1, 2021
29085e5
modified one file
saurabhgore-code Feb 1, 2021
72dc162
deleted one directory
saurabhgore-code Feb 1, 2021
7a196d2
deleted one more directory
saurabhgore-code Feb 1, 2021
36e62f9
added one file
Feb 2, 2021
5756c77
Modifed one file
saurabhgore-code Feb 2, 2021
5d6f07c
MODIFIED ONE FILE
Feb 2, 2021
77756a4
modified one file
saurabhgore-code Feb 2, 2021
4ae38fc
modified one file
saurabhgore-code Feb 2, 2021
b464d33
modified one file
saurabhgore-code Feb 2, 2021
0a67c25
added one file
Feb 15, 2021
1cf6602
modified one file
Feb 15, 2021
3c623bd
modified one file
saurabhgore-code Feb 21, 2021
5ba970a
modified one file
saurabhgore-code Feb 21, 2021
2f28e29
made one change to repo
saurabhgore-code Oct 11, 2021
19c83a2
made one change to repo
saurabhgore-code Oct 11, 2021
b2a5c0d
made one change to repo
saurabhgore-code Oct 11, 2021
228debd
made one change to repo
saurabhgore-code Oct 11, 2021
ae50b1f
made changes to repo
saurabhgore-code Oct 11, 2021
6d34bfe
made one change to repo
saurabhgore-code Oct 11, 2021
a0c4cd4
removed one file from repo
saurabhgore-code Oct 11, 2021
641c9d9
made one changed to repo
saurabhgore-code Oct 11, 2021
39e23c8
made changes to repo
saurabhgore-code Oct 11, 2021
d924c61
made one change to repo
saurabhgore-code Oct 14, 2021
fe4b25e
made one change to repo
saurabhgore-code Oct 14, 2021
75b62d3
made one change to repo
saurabhgore-code Oct 14, 2021
8261c3b
made changes to repo
saurabhgore-code Oct 15, 2021
aa10aa8
made one change to repo
saurabhgore-code Nov 3, 2021
2ab12af
made one change to repo
saurabhgore-code Nov 26, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
pipeline {
agent any
environment {
DOCKERHUB_CREDENTIALS=credentials('dockerhub')
}
stages {
stage('Cloning Git') {
steps{
git 'https://github.com/saurabhgore-code/SaurabhSimplilearnProject.git'
}
}
stage('Building Image') {
steps{
script{
sh 'docker build -t go-image /root'
}
}
}
stage('login dockerhub'){
steps{
sh 'echo $DOCKERHUB_CREDENTIALS_PSW | docker login -u $DOCKERHUB_CREDENTIALS_USR --password-stdin'
}
}
stage('Deploy Image') {
steps{
script{

sh 'docker tag go-image saurabhgore70/go-image:v2'
sh 'docker push saurabhgore70/go-image:v2'
}
}
}

}
}
9 changes: 9 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<title>
This is my webpage created through Dockerfile for the Simplilearn Project
<body>
My name is sagore
i am finding it really interesting. I am going to give my best in this project.
Today I have completed the write up for the project.
I am from bhopal
</body>
</title>
9 changes: 0 additions & 9 deletions lab1-dockerfile/static-site/Dockerfile

This file was deleted.

Loading