write a health check script
ð Done!
Is docker really necessary for this?
ð Done!
write the script without docker. make it bash only.
ð¡ Idea: Use which
to find out if Docker is installed, and use that in your script.
bash
if [[ -z "$(which docker)" ]]; then
echo "Docker not found. Please install Docker before running this script." >&2
exit 1
fi