mirror of
https://github.com/containers/buildah.git
synced 2026-02-05 09:45:38 +01:00
If $BUILD_REGISTRY_SOURCES is set, expect it to be a valid github.com/openshift/api/config/v1.Image, and parse its AllowedRegistries and BlockedRegistries lists when, pulling, committing, or pushing images. Override the local signature policy when committing or pushing an image to ensure that local storage is always allowed. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com> Closes: #1787 Approved by: rhatdan
26 lines
830 B
Plaintext
26 lines
830 B
Plaintext
# 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']
|
|
|
|
# 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 = []
|