Specify Docker version during installation

This commit is contained in:
Mauricio Siu
2025-11-22 10:07:04 -05:00
committed by GitHub
parent 0c70d5773d
commit 00488f3e7e

View File

@@ -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
fi