DevOps Complete Course: Docker, Kubernetes, Jenkins

Learn DevOps with Docker, Kubernetes, Jenkins, and CI/CD pipelines

☆☆☆☆☆ 0 (0 reviews) 0 students

Created by Stephen Grider

Last updated: Jun 2025 • English

What you'll learn

  • Master Docker containerization
  • Deploy applications with Kubernetes
  • Set up CI/CD pipelines with Jenkins
  • Use Git for version control and collaboration
  • Implement infrastructure as code with Terraform
  • Monitor applications with Prometheus and Grafana
  • Automate deployments and scaling
  • Manage secrets and configuration
  • Implement security scanning in pipelines
  • Use Ansible for configuration management
  • Set up logging and monitoring systems
  • Apply DevOps best practices in real projects

Course Content

0 sections • 0 lessons • 0 min total length

Requirements

  • Basic Linux command line knowledge
  • Understanding of software development lifecycle
  • Access to a computer (Linux/Mac preferred)

Description

Master DevOps with Docker, Kubernetes, Jenkins, Git, and CI/CD. Learn modern software deployment and infrastructure management.

Instructor

S

Stephen Grider

Engineering Architect and Instructor

Student Reviews

No reviews yet. Be the first to review this course!

$79.99
$169.99
  • hours on-demand video
  • Full lifetime access
  • Access on mobile and TV
  • Certificate of completion
  • Category:
    fas fa-cogs IT & Software
else { alert('Please log in to enroll in this course.'); window.location.href = 'index.php'; } }) .catch(error => { console.error('Error:', error); alert('Please log in to enroll in this course.'); window.location.href = 'index.php'; }); } function processPayment(courseId, amount) { if(confirm(`Enroll in this course for $${amount}?`)) { fetch('payment/process.php', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: `action=purchase&course_id=${courseId}&amount=${amount}` }) .then(response => response.json()) .then(data => { if(data.success) { alert('Enrollment successful! You can now access the course.'); window.location.href = `course-player.php?course_id=${courseId}`; } else { alert('Payment failed. Please try again.');