From af22b29ec1873b2b923b7e845a4e11da94c5ca98 Mon Sep 17 00:00:00 2001 From: Raven Scott Date: Wed, 18 Sep 2024 19:34:04 -0400 Subject: [PATCH] Update article --- .../Deep Dive: Discord-Linux Automated Container Platform.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/markdown/Deep Dive: Discord-Linux Automated Container Platform.md b/markdown/Deep Dive: Discord-Linux Automated Container Platform.md index 82bf2d0..326eab1 100644 --- a/markdown/Deep Dive: Discord-Linux Automated Container Platform.md +++ b/markdown/Deep Dive: Discord-Linux Automated Container Platform.md @@ -926,7 +926,9 @@ else fi ``` -This Bash script checks if a Docker container with a specific name or ID (passed as an argument to the script) exists. Here's a breakdown of what each part does: +This Bash script checks if a Docker container with a specific name or ID (passed as an argument to the script) exists. + +Here's a breakdown of what each part does: **`#!/bin/bash`**: - This is the shebang line that tells the system to run the script using the Bash shell.