From 14de4cc73e051a031658f0cfce36195b63cff624 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Apr 02 2018 21:43:34 +0000 Subject: Add registries.conf --- diff --git a/registries.conf b/registries.conf new file mode 100644 index 0000000..897ca4d --- /dev/null +++ b/registries.conf @@ -0,0 +1,25 @@ +N# This is a system-wide configuration file used to +# keep track of registries for various container backends. +# It adheres to TOML format and does not support recursive +# lists of registries. + +# The default location for this configuration file is /etc/containers/registries.conf. + +# The only valid categories are: 'registries.search', 'registries.insecure', +# and 'registries.block'. + +[registries.search] +registries = ['docker.io', 'registry.fedoraproject.org', 'quay.io', 'registry.access.redhat.com'] + +# If you need to access insecure registries, add the registry's fully-qualified name. +# An insecure registry is one that does not have a valid SSL certificate or only does HTTP. +[registries.insecure] +registries = [] + + +# If you need to block pull access from a registry, uncomment the section below +# and add the registries fully-qualified name. +# +# Docker only +[registries.block] +registries = []