From 37989871e907bd35b6de6dd6cf1658068e085e80 Mon Sep 17 00:00:00 2001 From: sskaje Date: Fri, 14 Mar 2025 17:16:18 +0800 Subject: T7092: update document for container registry --- docs/configuration/container/index.rst | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/docs/configuration/container/index.rst b/docs/configuration/container/index.rst index 979996b0..8327f169 100644 --- a/docs/configuration/container/index.rst +++ b/docs/configuration/container/index.rst @@ -243,6 +243,35 @@ Container Registry Credentials can be defined here and will only be used when adding a container image to the system. +.. cfgcmd:: set container registry insecure + + Allow registry access over unencrypted HTTP or TLS connections with + untrusted certificates. + +.. cfgcmd:: set container registry mirror address
+ +.. cfgcmd:: set container registry mirror host-name + +.. cfgcmd:: set container registry mirror port + +.. cfgcmd:: set container registry mirror path + + Registry mirror, use ``(host-name|address)[:port][/path]``. + + If you have mirror http://192.168.1.1:8080 for docker.io, you can use ``docker.io/some/repo`` or run ``podman pull docker.io/some/repo`` + + .. code-block:: none + + set container registry docker.io mirror address 192.168.1.1 + set container registry docker.io mirror port 8080 + set container registry docker.io insecure + + If http://192.168.1.1:8080 is your own registry, you can use ``192.168.1.1:8080/some/repo`` or run ``podman pull 192.168.1.1:8080/some/repo`` + + .. code-block:: none + + set container registry 192.168.1.1:8080 insecure + ****************** Operation Commands -- cgit v1.2.3