summary refs log tree commit diff
path: root/util/docker_cmd.sh
diff options
context:
space:
mode:
authorRenegade-Master <renegade.master.dev@protonmail.com>2023-01-14 02:25:07 +0000
committerGitHub <noreply@github.com>2023-01-14 13:25:07 +1100
commit3f2cbc9e68fa026ac14471e4ef15c9c349d78f38 (patch)
treef537534d3f303fc398e341d0305fc65d1247cbd0 /util/docker_cmd.sh
parent9c02b2990acfcbd628c38edb3d70dec691390d9c (diff)
Pr/reorder docker podman check (#19561)
Diffstat (limited to 'util/docker_cmd.sh')
-rwxr-xr-xutil/docker_cmd.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/docker_cmd.sh b/util/docker_cmd.sh
index f3c4c7804f..a179cef732 100755
--- a/util/docker_cmd.sh
+++ b/util/docker_cmd.sh
@@ -16,13 +16,13 @@ for arg; do
 done
 
 # Allow $RUNTIME to be overridden by the user as an environment variable
-# Else check if either docker or podman exit and set them as runtime
+# Else check if either podman or docker exit and set them as runtime
 # if none are found error out
 if [ -z "$RUNTIME" ]; then
-	if command -v docker >/dev/null 2>&1; then
-		RUNTIME="docker"
-	elif command -v podman >/dev/null 2>&1; then
+	if command -v podman >/dev/null 2>&1; then
 		RUNTIME="podman"
+	elif command -v docker >/dev/null 2>&1; then
+		RUNTIME="docker"
 	else
 		errcho "Error: no compatible container runtime found."
 		errcho "Either podman or docker are required."