Things GitHub Actions Tutorials Tend to ...
DevOpsAWS

Things GitHub Actions Tutorials Tend to Skip

After Part 1's first pipeline, this article covers 9 things basic CI/CD tutorials skip about GitHub Actions: concurrency control (with the github.ref gotcha), the branch rule for reading YAML on external events, the workflow_* family (dispatch, call, run — with the head_sha gotcha), cache dependencies, matrix strategy, Docker Hub instead of building on the server, GITHUB_TOKEN permissions, OIDC for AWS (no more long-lived SSH keys), and environment + required reviewers.

N
Nguyễn Văn Huy HoàngJune 8, 2026· 139 views
CI/CD Concepts and Your First Pipeline o...
AWSCI/CD

CI/CD Concepts and Your First Pipeline on AWS EC2

A step-by-step guide to deploying a React + Node.js web app to AWS EC2 with Docker, then wiring up an automated CI/CD pipeline with GitHub Actions. Walks through CI/CD fundamentals, the difference between Continuous Delivery and Continuous Deployment, the standard pipeline stages (Source → Build → Test → Quality Gate → Package → Deploy → Verify), GitHub Actions terminology, common deploy strategies, then builds a first end-to-end pipeline. Aimed at DevOps newcomers.

N
Nguyễn Văn Huy HoàngJune 8, 2026· 102 views
What Docker Is and Why You Should Use It
DevOpsDocker

What Docker Is and Why You Should Use It

Series opener: what problem Docker solves, how it differs from a virtual machine, the core concepts (image, container, registry), and the learning path from the basics to Docker Swarm.

K
KaiMay 23, 2026· 66 views
Docker Architecture: Client, Daemon, con...
DevOpsDocker

Docker Architecture: Client, Daemon, containerd and runc

A deep dive into Docker architecture: the client and daemon talk over a REST API, and beneath dockerd sit containerd and runc. Understand what really happens when you type docker run, with diagrams and commands you can verify yourself.

K
KaiMay 23, 2026· 74 views
What a Container Is Made Of: Namespaces,...
DevOpsDocker

What a Container Is Made Of: Namespaces, Cgroups and Union Filesystem

A deep dive into the lowest layer: three Linux kernel features — namespaces (isolation), cgroups (resource limits) and union filesystem (layers) — turn an ordinary process into a container. With diagrams and commands you can verify yourself.

K
KaiMay 23, 2026· 70 views
Installing Docker and Running Your First...
DevOpsDocker

Installing Docker and Running Your First Container

Install Docker for your OS, then run your first container and master the full lifecycle: run, ps, logs, exec, stop, rm. With a container state diagram and a cleanup section.

K
KaiMay 23, 2026· 32 views
Images and the Layer Mechanism: Pull, Ta...
DevOpsDocker

Images and the Layer Mechanism: Pull, Tag, Docker Hub

Where images come from and what they're made of: how to read an image name, the Docker Hub registry, layers shared across images, digests, and managing images on your machine with pull/images/tag/rmi/history.

K
KaiMay 23, 2026· 45 views