summaryrefslogtreecommitdiffstats
path: root/recipes-containers/skopeo/files/registries.conf
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-containers/skopeo/files/registries.conf')
-rw-r--r--recipes-containers/skopeo/files/registries.conf25
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes-containers/skopeo/files/registries.conf b/recipes-containers/skopeo/files/registries.conf
new file mode 100644
index 00000000..ba6c3f6e
--- /dev/null
+++ b/recipes-containers/skopeo/files/registries.conf
@@ -0,0 +1,25 @@
1# This is a system-wide configuration file used to
2# keep track of registries for various container backends.
3# It adheres to TOML format and does not support recursive
4# lists of registries.
5
6# The default location for this configuration file is /etc/containers/registries.conf.
7
8# The only valid categories are: 'registries.search', 'registries.insecure',
9# and 'registries.block'.
10
11[registries.search]
12registries = ['docker.io', 'registry.fedoraproject.org', 'quay.io', 'registry.access.redhat.com', 'registry.centos.org']
13
14# If you need to access insecure registries, add the registry's fully-qualified name.
15# An insecure registry is one that does not have a valid SSL certificate or only does HTTP.
16[registries.insecure]
17registries = []
18
19
20# If you need to block pull access from a registry, uncomment the section below
21# and add the registries fully-qualified name.
22#
23# Docker only
24[registries.block]
25registries = []