This repository has been archived on 2026-06-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ansible-review/tests/test.sh

9 lines
144 B
Bash

#!/bin/bash
set -euo pipefail
IMAGE="${1:-}"
if [ -z "$IMAGE" ]; then
echo "Usage: $0 <image>"
exit 1
fi
docker run --rm "$IMAGE" --version