Remove unverified support for podman.

This commit is contained in:
2025-12-16 10:14:48 +01:00
parent c078feceac
commit 1d66fc2edc

View File

@@ -67,15 +67,12 @@ if [ -z "$VOLUME_NAME" ]; then
fi
# Find container runtime
if command -v podman &> /dev/null; then
CMD="podman"
EXTRA_ARGS+=("--hostname $(hostname -s)")
if command -v container &> /dev/null; then
# Apple container command line tool
CMD="container"
elif command -v docker &> /dev/null; then
CMD="docker"
EXTRA_ARGS+=("--hostname $(hostname -s)")
elif command -v container &> /dev/null; then
# Apple container command line tool
CMD="container"
else
echo "Error: No usable container runtime was found." >&2
exit 1