Files
cis/script/check/host/checks/app_docker-compose_is_installed.check.sh
2025-03-08 09:33:35 +01:00

8 lines
108 B
Bash
Executable File

#!/bin/bash
_CURRENT_APP='docker compose version'
${_CURRENT_APP} > /dev/null 2>&1 \
&& exit 0
exit 1