File registries.conf of Package libcontainers-common
21
1
# For more information on this configuration file, see containers-registries.conf(5).
2
#
3
# Registries to search for images that are not fully-qualified.
4
# i.e. foobar.com/my_image:latest vs my_image:latest
5
[registries.search]
6
registries = ["registry.opensuse.org", "docker.io"]
7
8
# Registries that do not use TLS when pulling images or uses self-signed
9
# certificates.
10
[registries.insecure]
11
registries = []
12
13
# Blocked Registries, blocks the `docker daemon` from pulling from the blocked registry. If you specify
14
# "*", then the docker daemon will only be allowed to pull from registries listed above in the search
15
# registries. Blocked Registries is deprecated because other container runtimes and tools will not use it.
16
# It is recommended that you use the trust policy file /etc/containers/policy.json to control which
17
# registries you want to allow users to pull and push from. policy.json gives greater flexibility, and
18
# supports all container runtimes and tools including the docker daemon, cri-o, buildah ...
19
[registries.block]
20
registries = []
21