From 3753a3b2d084eda96563f1ec1330fcdb240451ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Mon, 9 Nov 2020 09:57:45 +0100 Subject: [PATCH] koji/test: use our quay mirror of the postgres container docker.io has recently introduced a rate limiting on container pulls causing the koji test to fail quite often. To fix this issue, I created our own postgress mirror[1]. This commit switches the Koji test to use it. Note that this change bumps the postgres version from 12 to 13. [1]: https://github.com/osbuild/containers/commit/7db3c6802ebe434129dfc5cd37e7dced329cfe88 --- tools/run-koji-container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/run-koji-container.sh b/tools/run-koji-container.sh index d98836bb2..22cdbafa2 100755 --- a/tools/run-koji-container.sh +++ b/tools/run-koji-container.sh @@ -57,7 +57,7 @@ koji_start() { -e POSTGRES_USER=koji \ -e POSTGRES_PASSWORD=kojipass \ -e POSTGRES_DB=koji \ - docker.io/library/postgres:12-alpine + quay.io/osbuild/postgres:v1 ${CONTAINER_RUNTIME} run -d --name org.osbuild.koji.kdc \ --network org.osbuild.koji \