From 00488f3e7e6695fe468a0d10cbe7556416e272a7 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sat, 22 Nov 2025 10:07:04 -0500 Subject: [PATCH] Specify Docker version during installation --- apps/website/public/canary.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/website/public/canary.sh b/apps/website/public/canary.sh index 7383e5c..7e1e776 100644 --- a/apps/website/public/canary.sh +++ b/apps/website/public/canary.sh @@ -36,7 +36,7 @@ install_dokploy() { if command_exists docker; then echo "Docker already installed" else - curl -sSL https://get.docker.com | sh + curl -sSL https://get.docker.com | sh -s -- --version 28.5.0 fi docker swarm leave --force 2>/dev/null @@ -219,4 +219,4 @@ if [ "$1" = "update" ]; then update_dokploy else install_dokploy -fi \ No newline at end of file +fi