From 2f9bf7eae8b1c51242ee57e7bdb5811cf2a30ba0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Radek=20Je=C5=BEek?= Date: Fri, 8 Nov 2024 11:28:08 +0100 Subject: [PATCH] fix(podman): change required compose version to 2.26 (#37) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Radek Ježek --- bee-stack.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bee-stack.sh b/bee-stack.sh index 06d86f5..567d124 100755 --- a/bee-stack.sh +++ b/bee-stack.sh @@ -3,7 +3,7 @@ # shellcheck disable=SC2059 # disable "no variables in printf" due to color codes -REQUIRED_COMPOSE_VERSION=2.29 +REQUIRED_COMPOSE_VERSION=2.26 ORANGE='\e[1;33m' BLUE='\e[1;34m' NC='\e[0m' # No Color @@ -230,4 +230,4 @@ elif [ "$command" = 'stop' ]; then stop_stack elif [ "$command" = 'clean' ]; then clean_stack elif [ "$command" = 'check' ]; then check_docker else print_error "Unknown command $1" -fi \ No newline at end of file +fi