From d7a76760d0d98562a21dc82d906ab62c0ede818b Mon Sep 17 00:00:00 2001 From: Jonathan Gonzalez V Date: Fri, 3 Jun 2022 10:17:30 -0400 Subject: [PATCH] chore: Increase the size of the search for images (#15) Signed-off-by: Jonathan Gonzalez V --- Debian/update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Debian/update.sh b/Debian/update.sh index ed039d7d..503d411f 100755 --- a/Debian/update.sh +++ b/Debian/update.sh @@ -32,7 +32,7 @@ versions=("${versions[@]%/}") fetch_postgres_image_version() { local suite="$1"; local item="$2"; - curl -SsL "https://registry.hub.docker.com/v2/repositories/library/postgres/tags/?name=bullseye&ordering=last_updated&" | \ + curl -SsL "https://registry.hub.docker.com/v2/repositories/library/postgres/tags/?name=bullseye&ordering=last_updated&page_size=20" | \ jq -c ".results[] | select( .name | match(\"^${suite}.[0-9]+-bullseye\"))" | \ jq -r ".${item}" | \ head -n1