diff options
author | Robert Göhler <github@ghlr.de> | 2025-03-16 21:24:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-16 21:24:54 +0100 |
commit | e1123e5c983b6367373a6a9c462f2b3efa9d148c (patch) | |
tree | 55b9d53d7148cb2c3fbea626a2e433c99cc79c09 | |
parent | a97a6563a4bcfe86718709132f5317befe8bbde1 (diff) | |
parent | 37989871e907bd35b6de6dd6cf1658068e085e80 (diff) | |
download | vyos-documentation-e1123e5c983b6367373a6a9c462f2b3efa9d148c.tar.gz vyos-documentation-e1123e5c983b6367373a6a9c462f2b3efa9d148c.zip |
Merge pull request #1608 from sskaje/T7092
T7092: update document for container registry
-rw-r--r-- | docs/configuration/container/index.rst | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/configuration/container/index.rst b/docs/configuration/container/index.rst index df8beed1..5882f6db 100644 --- a/docs/configuration/container/index.rst +++ b/docs/configuration/container/index.rst @@ -252,6 +252,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 <name> insecure + + Allow registry access over unencrypted HTTP or TLS connections with + untrusted certificates. + +.. cfgcmd:: set container registry <name> mirror address <address> + +.. cfgcmd:: set container registry <name> mirror host-name <host-name> + +.. cfgcmd:: set container registry <name> mirror port <port> + +.. cfgcmd:: set container registry <name> mirror path <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 |