Skip to content

Commit 2f50d39

Browse files
committed
Added support for Docker 20.x
1 parent f73bf2f commit 2f50d39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/check-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ if [ -z "$CHECKED_DEPS" ]; then
128128
fi
129129
# Docker (optional)
130130
command -v docker >/dev/null 2>&1 && DOCKER_VERSION="$(docker --version | awk '{print $3}' | tr -d ,)" || { dep_warning "Docker"; }
131-
if egrep -v -q "^(17\.|18\.|19\.)" <<< ${DOCKER_VERSION}; then
131+
if egrep -v -q "^(17\.|18\.|19\.|20\.)" <<< ${DOCKER_VERSION}; then
132132
dep_warning "Docker ${DOCKER_MIN_VERSION}"
133133
else
134134
hasdocker=1

0 commit comments

Comments
 (0)