Skip to content

Commit 9dcac9b

Browse files
authored
Bump docker versions for newer versions of deb and ubnt (#2937)
25.7.1 is not available for newer deb/ubnt. Updating to 25.8.2 for these releases
1 parent f24f93d commit 9dcac9b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

utils/quick-setup.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,14 @@ function check_os {
1010
. /etc/os-release
1111
if [ "$ID" = "debian" ]; then
1212
DISTRO_TYPE="debian"
13+
if [ "$VERSION_ID" = "13" ]; then
14+
DOCKER_VERSION="25.8.2"
15+
fi
1316
elif [ "$ID" = "ubuntu" ]; then
1417
DISTRO_TYPE="ubuntu"
18+
if [ "$VERSION_ID" = "25.04" ]; then
19+
DOCKER_VERSION="25.8.2"
20+
fi
1521
elif [ "$ID" = "fedora" ]; then
1622
DISTRO_TYPE="fedora"
1723
elif [[ "$ID" = "rocky" || "$ID" = "rhel" || "$ID" = "centos" || "$ID" = "almalinux" ]]; then

0 commit comments

Comments
 (0)