Add docker availability check to all scripts that use docker commands

22 scripts used docker without verifying it's present. Consistent with the
pattern already established in Docker_Essentials scripts. Added after acquire_lock
and before detect_hosts in each script's setup section.
This commit is contained in:
Gmer4Lfe
2026-05-20 18:35:34 -04:00
parent 740710e0d0
commit e932936acc
22 changed files with 110 additions and 0 deletions
+5
View File
@@ -263,6 +263,11 @@ fi
acquire_lock # strict single instance — notifies on collision
if ! command -v docker &>/dev/null; then
error "Docker command not found"
exit 1
fi
detect_hosts
resolve_remote_ip