2018-04-03 15:10:23 +00:00
|
|
|
# This is a system-wide configuration file used to
|
2018-04-02 21:43:34 +00:00
|
|
|
# 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]
|
2018-05-28 15:05:39 +00:00
|
|
|
registries = ['docker.io', 'registry.fedoraproject.org', 'quay.io', 'registry.access.redhat.com', 'registry.centos.org']
|
2018-04-02 21:43:34 +00:00
|
|
|
|
|
|
|
# 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 = []
|