Tag: Automation

Browse all articles, tutorials, and guides about Automation

Guides

Posts

Docker
2024-12-10|7 min read

How to Execute Multiple Commands in Docker Compose

Learn different techniques for running multiple commands in Docker Compose services, from simple command chaining to advanced multi-stage initialization scripts.

Terraform
2024-11-20|5 min read

How to Execute Terraform Actions Without the Interactive Prompt

Learn how to automate Terraform workflows by bypassing the interactive prompt for commands like apply and destroy.

CI/CD
2024-11-18|7 min read

The GitHub Actions Workflow That Eliminated Our DevOps Bottleneck

How we reduced deployment time from 2 hours to 8 minutes using smart GitHub Actions patterns and parallel execution strategies.

AWS
2024-10-30|7 min read

How to Nuke All AWS Resources in an AWS Account

Learn how to safely and efficiently delete all resources in an AWS account using tools like AWS CLI and Terraform.

Bash
2024-07-08|6 min read

How to Check if a File Does Not Exist in Bash

Learn various methods to test for file non-existence in Bash scripts, including proper error handling, permission checks, and practical automation examples.

Linux
2024-05-20|6 min read

How to Check if a Directory Exists in Bash Shell Scripts

Learn multiple methods to check directory existence in Bash scripts, including proper error handling, permission checks, and practical use cases for reliable automation.

Bash
2024-03-15|7 min read

How to Get the Directory Where a Bash Script is Located

Learn multiple reliable methods to determine the directory path of your Bash script from within the script itself, including handling symbolic links and edge cases.