56b2e4
# For more information on this configuration file, see containers-registries.conf(5).
56b2e4
#
56b2e4
# NOTE: RISK OF USING UNQUALIFIED IMAGE NAMES
6511ce
# We recommend always using fully qualified image names including the registry
6511ce
# server (full dns name), namespace, image name, and tag
6511ce
# (e.g., registry.redhat.io/ubi8/ubi:latest). Pulling by digest (i.e.,
6511ce
# quay.io/repository/name@digest) further eliminates the ambiguity of tags.
6511ce
# When using short names, there is always an inherent risk that the image being
6511ce
# pulled could be spoofed. For example, a user wants to pull an image named
6511ce
# `foobar` from a registry and expects it to come from myregistry.com. If
6511ce
# myregistry.com is not first in the search list, an attacker could place a
6511ce
# different `foobar` image at a registry earlier in the search list. The user
6511ce
# would accidentally pull and run the attacker's image and code rather than the
6511ce
# intended content. We recommend only adding registries which are completely
6511ce
# trusted (i.e., registries which don't allow unknown or anonymous users to
6511ce
# create accounts with arbitrary names). This will prevent an image from being
6511ce
# spoofed, squatted or otherwise made insecure.  If it is necessary to use one
6511ce
# of these registries, it should be added at the end of the list.
56b2e4
#
6511ce
# # An array of host[:port] registries to try when pulling an unqualified image, in order.
56b2e4
480752
unqualified-search-registries = ["registry.fedoraproject.org", "registry.access.redhat.com", "registry.centos.org", "docker.io"]
56b2e4
56b2e4
# [[registry]]
56b2e4
# # The "prefix" field is used to choose the relevant [[registry]] TOML table;
56b2e4
# # (only) the TOML table with the longest match for the input image name
56b2e4
# # (taking into account namespace/repo/tag/digest separators) is used.
6511ce
# # 
6511ce
# # The prefix can also be of the form: *.example.com for wildcard subdomain
6511ce
# # matching.
56b2e4
# #
56b2e4
# # If the prefix field is missing, it defaults to be the same as the "location" field.
56b2e4
# prefix = "example.com/foo"
56b2e4
#
56b2e4
# # If true, unencrypted HTTP as well as TLS connections with untrusted
56b2e4
# # certificates are allowed.
56b2e4
# insecure = false
56b2e4
#
56b2e4
# # If true, pulling images with matching names is forbidden.
56b2e4
# blocked = false
56b2e4
#
56b2e4
# # The physical location of the "prefix"-rooted namespace.
56b2e4
# #
6511ce
# # By default, this is equal to "prefix" (in which case "prefix" can be omitted
56b2e4
# # and the [[registry]] TOML table can only specify "location").
56b2e4
# #
56b2e4
# # Example: Given
56b2e4
# #   prefix = "example.com/foo"
56b2e4
# #   location = "internal-registry-for-example.net/bar"
56b2e4
# # requests for the image example.com/foo/myimage:latest will actually work with the
56b2e4
# # internal-registry-for-example.net/bar/myimage:latest image.
6511ce
#
6511ce
# # The location can be empty iff prefix is in a
6511ce
# # wildcarded format: "*.example.com". In this case, the input reference will
6511ce
# # be used as-is without any rewrite.
56b2e4
# location = internal-registry-for-example.com/bar"
56b2e4
#
56b2e4
# # (Possibly-partial) mirrors for the "prefix"-rooted namespace.
56b2e4
# #
56b2e4
# # The mirrors are attempted in the specified order; the first one that can be
56b2e4
# # contacted and contains the image will be used (and if none of the mirrors contains the image,
56b2e4
# # the primary location specified by the "registry.location" field, or using the unmodified
56b2e4
# # user-specified reference, is tried last).
56b2e4
# #
56b2e4
# # Each TOML table in the "mirror" array can contain the following fields, with the same semantics
56b2e4
# # as if specified in the [[registry]] TOML table directly:
56b2e4
# # - location
56b2e4
# # - insecure
56b2e4
# [[registry.mirror]]
56b2e4
# location = "example-mirror-0.local/mirror-for-foo"
56b2e4
# [[registry.mirror]]
56b2e4
# location = "example-mirror-1.local/mirrors/foo"
56b2e4
# insecure = true
56b2e4
# # Given the above, a pull of example.com/foo/image:latest will try:
56b2e4
# # 1. example-mirror-0.local/mirror-for-foo/image:latest
56b2e4
# # 2. example-mirror-1.local/mirrors/foo/image:latest
6511ce
# # 3. internal-registry-for-example.net/bar/image:latest
56b2e4
# # in order, and use the first one that exists.
6511ce
short-name-mode = "enforcing"