Shaik MustafaforDevOps Projectsdevopsprojects77.hashnode.dev路Nov 23, 2024Containerizing the application using Docker by implementing CI/CD tool Jenkins 馃殌In this project, we leverage Jenkins to create a robust CI/CD pipeline that integrates tools like Docker, Trivy, SonarQube, and OWASP Dependency Check to deliver secure and high-quality software. Tools used: GitHub Jenkins Docker OWASP Trivy So...Discuss路187 readstvivy
Shaik MustafaforLinux Serieslinux-series.hashnode.dev路Nov 23, 202410 Bash scripts that every beginner DevOps engineer can use to automate workflows1. Update and Upgrade System Packages Scenario: Your server needs to be updated with the latest security patches.Script: #!/bin/bash echo "Updating system packages..." sudo apt update && sudo apt upgrade -y echo "System updated successfully!" What i...Discussmustafa