From 1d66fc2edc5fb07fdbe364760db27e6a9d78a5af Mon Sep 17 00:00:00 2001 From: Slawek Koszewski Date: Tue, 16 Dec 2025 10:14:48 +0100 Subject: [PATCH] Remove unverified support for podman. --- azure-cli | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/azure-cli b/azure-cli index 1179a7a..68c18b9 100755 --- a/azure-cli +++ b/azure-cli @@ -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