summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/podman-login.1.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/podman-login.1.md b/docs/podman-login.1.md
index 8d8e688c1..2b136789e 100644
--- a/docs/podman-login.1.md
+++ b/docs/podman-login.1.md
@@ -37,6 +37,12 @@ Username for registry
**--authfile**
Path of the authentication file. Default is ${XDG_\RUNTIME\_DIR}/containers/auth.json
+**--cert-dir**
+Pathname of a directory containing TLS certificates and keys
+
+**--tls-verify**
+Require HTTPS and verify certificates when contacting registries (default: true)
+
## EXAMPLES
```
@@ -58,6 +64,16 @@ Password:
Login Succeeded!
```
+```
+$ kpod login --tls-verify=false -u test -p test localhost:5000
+Login Succeeded!
+```
+
+```
+$ kpod login --cert-dir /etc/containers/certs.d/ -u foo -p bar localhost:5000
+Login Succeeded!
+```
+
## SEE ALSO
podman(1), podman-logout(1), crio(8), crio.conf(5)