We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 259fdb5 commit d76e89fCopy full SHA for d76e89f
.github/workflows/ghcr.yml
@@ -5,6 +5,9 @@
5
# Docker Hub has a rate limit, while ghcr.io doesn't.
6
# Those images are pushed to ghcr.io by this job.
7
#
8
+# While Docker Hub rate limit *shouldn't* be an issue on GitHub Actions,
9
+# it certainly is for AWS codebuild.
10
+#
11
# Note that authenticating to DockerHub or other registries isn't possible
12
# for PR jobs, because forks can't access secrets.
13
# That's why we use ghcr.io: it has no rate limit and it doesn't require authentication.
@@ -54,6 +57,10 @@ jobs:
54
57
"ubuntu:22.04"
55
58
# Mirrored because used by all linux CI jobs, including mingw-check-tidy
56
59
"moby/buildkit:buildx-stable-1"
60
+ # Mirrored because used when CI is running inside a Docker container
61
+ "alpine:3.4"
62
+ # Mirrored because used by dist-x86_64-linux
63
+ "centos:7"
64
)
65
66
# Mirror each image from DockerHub to ghcr.io
0 commit comments