1
0
mirror of https://github.com/containers/buildah.git synced 2026-02-05 09:45:38 +01:00
Files
buildah/docs/samples/registries.conf
Reinhard Tartler 8f61fb2e3b corrected man page section; .conf file to mention its man page
Added as Debian distro patch.

[CI:DOCS]

Original-Author: Dmitry Smirnov <onlyjob@debian.org>
Signed-off-by: Reinhard Tartler <siretart@tauware.de>
2021-08-31 09:20:34 +02:00

29 lines
922 B
Plaintext

## containers-registries.conf(5): System Registry Configuration File
#
# This is a sample of 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 = ['quay.io', 'docker.io']
# 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 = []