7 items under this folder.

Sep 14, 2026·3 min read

Awesome Docker Compose CLI

Installing You can try install docker compose in two method, apt package managing or manually. Read more at Install the Compose plugin (Recommended) Install Compose standalone Use apt package sudo apt install docker-compose-plugin -y Manually download To download and install the Compose CLI plugin, run DOCKER_CONFIG=${DOCKER_CONFIG:-$HOME/.

Sep 14, 2026·9 min read

Awesome Helm

Quote Hi @all, as you can see Kubernetes is becoming the potential technology in the world in couple recently year. The knowledge about Kubernetes honestly to say It’s really huge, so today we can learn a bit about once of tools to maintain and deploy the workload inside Kubernetes Cluster, Helm.

Sep 14, 2026·7 min read

Awesome Kubectl snippets

Info Small script and take a note to interact between kubectl and your kubernetes cluster. You can explore command with kubectl in some place, including kubectl Quick Reference kubectl reference A couple of aliases for kubectl profile export KUBE_EDITOR="nano" # Kube edit will use nano for default editor alias k="kubectl" alias kgp="kubectl get pods" alias kn="kubectl config set-context --current --namespace" alias kaf="kubectl apply -f " alias kr="kubectl run --dry-run=client -o yaml " alias krcp="k resource-capacity -p --util" alias krca="k resource-capacity -a" alias kgsecret="k get secret -o go-template='{{range \$k,\$v := .

Sep 14, 2026·46 min read

Awesome Kubernetes Walkthroughs

To find more information and example, you can double-check a some manifest collection at Kubernetes API Reference (1.34): Retrieve the api for double-check the manifest definition 🌟 (Recommended) Kubernetes Examples: About whole manifest of any types in Kubernetes 🌟 (Recommended) Kubernetes Lab of Collabnix: Ultimate Hands-on Labs and Tutorials 🌟 (Recommended) Kubernetes Manifests: A collection of K8s manifests to deploy common applications K8s Deployment Strategies: About setup deployment strategies of Kubernetes Medium - 24 Kubernetes Masters’ Configurations Medium - Zero-Downtime Deployments with Kubernetes CRDs-catalog: CRDs-catalog - used with kubeconform doc.

Sep 14, 2026·21 min read

Awesome Kubernetes

Quote This page is created for purpose store relation to helpful articles, make a some reference link when you can check and understand more about K8s (Kubernetes) and awesome things with this orchestration, but also learning and exploring more about worldwide containerization 🔥 Kubernetes Articles / Documentation / Practicing Azure Kubernetes Service (AKS) Azure - Scaling options for applications in Azure Kubernetes Service (AKS) Azure - Core Kubernetes concepts for Azure Kubernetes Service Azure - Supported Kubernetes versions in Azure Kubernetes Service (AKS) AKS DevSecOps Workshop 🌟 (Recommended) Azure - Best practices for basic scheduler features in Azure Kubernetes Service (AKS) Medium - Optimize Your Kubernetes Resources with Azure IAM: Managed vs.

Sep 14, 2026·19 min read

Awesome Containerization

Docker & Containerization Articles Medium - Powerful Docker Alternatives in 2024 AquaSec - Container Engines: How They Work and Top 7 Options Blackvoid - Synology, Docker and open source tech blog Medium - Deep Dive into Docker Containers | Architecture and Features Docker - Alternative container runtimes Cloudraft - Most Popular Container Runtimes Medium - 11 Open-Source SaaS Killer — Selfhost With Docker Medium - 11 Open-Source SaaS Killer — Selfhost With Docker -2 Medium - 11 Open-Source SaaS Killer — Selfhost With Docker -3 Dev.

Sep 14, 2026·7 min read

Awesome Docker CLI

Installing The default installation (via APT) # Apply with Debian, Ubuntu or Kali sudo apt update && sudo apt install docker.io docker-compose -y # Enable and add permission (Usually: You terminal is not root, if root you can escape) sudo usermod -aG docker $USER sudo systemctl enable docker.