864398
# For more information on this configuration file, see containers-registries.conf(5).
864398
#
864398
# There are multiple versions of the configuration syntax available, where the
864398
# second iteration is backwards compatible to the first one. Mixing up both
864398
# formats will result in an runtime error.
864398
#
864398
# The initial configuration format looks like this:
864398
#
864398
# NOTE: RISK OF USING UNQUALIFIED IMAGE NAMES
864398
# Red Hat recommends always using fully qualified image names including the registry server (full dns name),
864398
# namespace, image name, and tag (ex. registry.redhat.io/ubi8/ubu:latest). When using short names, there is
864398
# always an inherent risk that the image being pulled could be spoofed. For example, a user wants to.
864398
# pull an image named `foobar` from a registry and expects it to come from myregistry.com. If myregistry.com
864398
# is not first in the search list, an attacker could place a different `foobar` image at a registry earlier
864398
# in the search list. The user would accidentally pull and run the attacker's image and code rather than the
864398
# intended content. Red Hat recommends only adding registries which are completely trusted, i.e. registries
864398
# which don't allow unknown or anonymous users to create accounts with arbitrary names. This will prevent
864398
# an image from being spoofed, squatted or otherwise made insecure.  If it is necessary to use one of these
864398
# registries, it should be added at the end of the list.
864398
#
864398
# It is recommended to use fully-qualified images for pulling as the
864398
# destination registry is unambiguous. Pulling by digest
864398
# (i.e., quay.io/repository/name@digest) further eliminates the ambiguity of
864398
# tags.
864398
864398
# The following registries are a set of secure defaults provided by Red Hat.
864398
# Each of these registries provides container images curated, patched
864398
# and maintained by Red Hat and its partners
864398
[registries.search]
864398
registries = ['registry.access.redhat.com', 'registry.redhat.io']
864398
# The following registries entry can be used for convenience but includes
864398
# container images built by the community. This set of content comes with all
864398
# of the risks of any user generated content including security and performance
864398
# issues. To use this list first comment out the default list, then uncomment
864398
# the following list
864398
#registries = ['registry.access.redhat.com', 'registry.redhat.io', 'docker.io', 'quay.io']
864398
864398
# Registries that do not use TLS when pulling images or uses self-signed
864398
# certificates.
864398
[registries.insecure]
864398
registries = []
864398
864398
# Blocked Registries, blocks the `docker daemon` from pulling from the blocked registry.  If you specify
864398
# "*", then the docker daemon will only be allowed to pull from registries listed above in the search
864398
# registries.  Blocked Registries is deprecated because other container runtimes and tools will not use it.
864398
# It is recommended that you use the trust policy file /etc/containers/policy.json to control which
864398
# registries you want to allow users to pull and push from.  policy.json gives greater flexibility, and
864398
# supports all container runtimes and tools including the docker daemon, cri-o, buildah ...
864398
# The atomic CLI `atomic trust` can be used to easily configure the policy.json file.
864398
[registries.block]
864398
registries = []
864398
864398
# The second version of the configuration format allows to specify registry
864398
# mirrors:
864398
#
864398
# # An array of host[:port] registries to try when pulling an unqualified image, in order.
864398
# unqualified-search-registries = ["example.com"]
864398
#
864398
# [[registry]]
864398
# # The "prefix" field is used to choose the relevant [[registry]] TOML table;
864398
# # (only) the TOML table with the longest match for the input image name
864398
# # (taking into account namespace/repo/tag/digest separators) is used.
864398
# #
864398
# # If the prefix field is missing, it defaults to be the same as the "location" field.
864398
# prefix = "example.com/foo"
864398
#
864398
# # If true, unencrypted HTTP as well as TLS connections with untrusted
864398
# # certificates are allowed.
864398
# insecure = false
864398
#
864398
# # If true, pulling images with matching names is forbidden.
864398
# blocked = false
864398
#
864398
# # The physical location of the "prefix"-rooted namespace.
864398
# #
864398
# # By default, this equal to "prefix" (in which case "prefix" can be omitted
864398
# # and the [[registry]] TOML table can only specify "location").
864398
# #
864398
# # Example: Given
864398
# #   prefix = "example.com/foo"
864398
# #   location = "internal-registry-for-example.net/bar"
864398
# # requests for the image example.com/foo/myimage:latest will actually work with the
864398
# # internal-registry-for-example.net/bar/myimage:latest image.
864398
# location = internal-registry-for-example.com/bar"
864398
#
864398
# # (Possibly-partial) mirrors for the "prefix"-rooted namespace.
864398
# #
864398
# # The mirrors are attempted in the specified order; the first one that can be
864398
# # contacted and contains the image will be used (and if none of the mirrors contains the image,
864398
# # the primary location specified by the "registry.location" field, or using the unmodified
864398
# # user-specified reference, is tried last).
864398
# #
864398
# # Each TOML table in the "mirror" array can contain the following fields, with the same semantics
864398
# # as if specified in the [[registry]] TOML table directly:
864398
# # - location
864398
# # - insecure
864398
# [[registry.mirror]]
864398
# location = "example-mirror-0.local/mirror-for-foo"
864398
# [[registry.mirror]]
864398
# location = "example-mirror-1.local/mirrors/foo"
864398
# insecure = true
864398
# # Given the above, a pull of example.com/foo/image:latest will try:
864398
# # 1. example-mirror-0.local/mirror-for-foo/image:latest
864398
# # 2. example-mirror-1.local/mirrors/foo/image:latest
864398
# # 3. internal-registry-for-example.net/bar/myimage:latest
864398
# # in order, and use the first one that exists.