We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f24f93d commit 9dcac9bCopy full SHA for 9dcac9b
utils/quick-setup.sh
@@ -10,8 +10,14 @@ function check_os {
10
. /etc/os-release
11
if [ "$ID" = "debian" ]; then
12
DISTRO_TYPE="debian"
13
+ if [ "$VERSION_ID" = "13" ]; then
14
+ DOCKER_VERSION="25.8.2"
15
+ fi
16
elif [ "$ID" = "ubuntu" ]; then
17
DISTRO_TYPE="ubuntu"
18
+ if [ "$VERSION_ID" = "25.04" ]; then
19
20
21
elif [ "$ID" = "fedora" ]; then
22
DISTRO_TYPE="fedora"
23
elif [[ "$ID" = "rocky" || "$ID" = "rhel" || "$ID" = "centos" || "$ID" = "almalinux" ]]; then
0 commit comments