The Recipe for Modern IT In the traditional world of IT, setting up a server was a craft. A sysadmin would log in, click through menus, install packages, and tweak settings until everything worked. I know, I did this job for much of my early career. But much like a chef cooking a complex signature Read More …
Tag: CI/CD pipelines
Integrating Docker into a CI/CD Pipeline
A typical Dockerized CI/CD pipeline, often orchestrated by tools like Jenkins, GitLab CI/CD, GitHub Actions, or Azure DevOps, follows these stages: Code Commit and Trigger: The process begins when a developer commits code to a version control system (VCS) like Git. This commit, particularly to a designated branch triggers the CI/CD pipeline automatically via a web Read More …
YAML – Yet Another Markup Language
In computer programming, YAML stands for YAML Ain’t Markup Language (it was originally intended to mean “Yet Another Markup Language”). It is a human-readable data serialization language. This means it’s designed to represent data in a format that is easy for humans to read and write, while also being easily parsed by computers. Here’s a Read More …