Created
October 22, 2019 07:35
-
-
Save rondinif/0be39f5a9f1dc46afaafbd00234d7b82 to your computer and use it in GitHub Desktop.
inspect podman registries configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user@linux ~]$ grep -Inr registries /etc/containers/registries.conf | |
1:# For more information on this configuration file, see containers-registries.conf(5). | |
11:[registries.search] | |
12:registries = ['docker.io', 'registry.fedoraproject.org', 'quay.io', 'registry.access.redhat.com', 'registry.centos.org'] | |
16:[registries.insecure] | |
17:registries = [] | |
20:# "*", then the docker daemon will only be allowed to pull from registries listed above in the search | |
21:# registries. Blocked Registries is deprecated because other container runtimes and tools will not use it. | |
23:# registries you want to allow users to pull and push from. policy.json gives greater flexibility, and | |
26:[registries.block] | |
27:registries = [] | |
32:# # An array of host[:port] registries to try when pulling an unqualified image, in order. | |
33:# unqualified-search-registries = ["example.com"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment