-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cirrus: Use google mirror for docker.io
Signed-off-by: Chris Evich <cevich@redhat.com>
- Loading branch information
1 parent
5d48606
commit 53fe386
Showing
3 changed files
with
17 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
# Note that changing the order here may break tests. | ||
[registries.search] | ||
registries = ['docker.io', 'quay.io', 'registry.fedoraproject.org'] | ||
unqualified-search-registries = ['docker.io', 'quay.io', 'registry.fedoraproject.org'] | ||
|
||
[registries.insecure] | ||
registries = [] | ||
[[registry]] | ||
# In Nov. 2020, Docker rate-limits image pulling. To avoid hitting these | ||
# limits while testing, always use the google mirror for qualified and | ||
# unqualified `docker.io` images. | ||
# Ref: https://cloud.google.com/container-registry/docs/pulling-cached-images | ||
prefix="docker.io" | ||
location="mirror.gcr.io" | ||
|
||
#blocked (docker only) | ||
[registries.block] | ||
registries = [] | ||
# 2020-10-27 a number of images are not present in gcr.io, and podman | ||
# barfs spectacularly when trying to fetch them. We've hand-copied | ||
# those to quay, using skopeo copy --all ... | ||
[[registry]] | ||
prefix="docker.io/library" | ||
location="quay.io/libpod" |