Skip to content

Commit ec71131

Browse files
alexlarssonachilleas-k
authored andcommitted
tests: Avoid running into docker.io rate limits
We use a custom copy (ghcr.io/osbuild/bootc-image-builder/registry) of the docker registy image to avoid running into pull rate limits.
1 parent e6b89b4 commit ec71131

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/test_build_disk.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ def registry_conf_fixture(shared_tmpdir, request):
137137
"-p", f"{registry_port}:5000",
138138
"--restart", "always",
139139
"--name", registry_container_name,
140-
"registry:2"
140+
# We use a copy of docker.io registry to avoid running into docker.io pull rate limits
141+
"ghcr.io/osbuild/bootc-image-builder/registry:2"
141142
], check=True)
142143

143144
registry_container_state = subprocess.run([

0 commit comments

Comments
 (0)