
💻 Python | Docker | Jenkins | Networking | Git | Linux 💻
Passionate about leveraging technology to drive efficiency and deliver innovative solutions. Proficient in Python development, Docker containerization, Jenkins automation, computer networking, Git version control, and Linux administration. Skilled in collaborating with diverse teams to deliver high-quality software products. Proficient in AWS EC2 instance management and deployment.
Seeking new opportunities to apply my expertise and contribute to impactful projects. Let's connect and explore how we can work together!
Inter-personal Skills:
Communication, Adaptability, Emotional intelligence, Active listening, Collaboration.
Happy To Connect🔗😊
Feel free to reach me out😃@ --> vrishnishreevb531@gmail.com 📬

Log in to Jenkins and click on "New Item"

Give a name --> Select Pipeline --> Click OK

Give Description

Write pipeline code in the Pipeline section --> Click Save
- Copy your Github Repo link and use it in the pipeline code as shown...
pipeline {
agent any
stages {
stage('Checkout') {
steps {
script {
git branch: 'main', url: 'https://github.com/vbvsk/django-notes-app.git'
}
}
}
stage('Testing') {
steps {
echo "Testing"
}
}
stage('Build Docker Image') {
steps {
script {
sh "docker build --no-cache -t django-notes-app ."
}
}
}
stage('Run Docker Container') {
steps {
script {
sh "docker run -p 8000:8000 -d django-notes-app"
}
}
}
}
}

Click on Build Now

Our Build is successful

Now Browse the port number

Thank you so much for reading
Follow me on LinkedIn to see interesting posts like this : )



