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]: 7db3c6802e
This commit is contained in:
Ondřej Budai 2020-11-09 09:57:45 +01:00
parent 1da61a4338
commit 3753a3b2d0

View file

@ -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 \