Skip to content

Commit

Permalink
allow using rhel8 packages with docker if those packages exist (#4811)
Browse files Browse the repository at this point in the history
  • Loading branch information
laverya authored Sep 7, 2023
1 parent 7236f12 commit 4d53c19
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/common/docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ function is_docker_version_supported() {
case "$LSB_DIST" in
centos|rhel|ol)
if [ "${DIST_VERSION_MAJOR}" = "8" ] && [ -n "$DOCKER_VERSION" ]; then
return 1
if [ "$DOCKER_VERSION" = "18.09.8" ] || [ "$DOCKER_VERSION" = "19.03.4" ] || [ "$DOCKER_VERSION" = "19.03.10" ]; then
return 1
fi
fi
;;
esac
Expand Down

0 comments on commit 4d53c19

Please sign in to comment.