From a8b149b406e9565067c1f281e86071942123163e Mon Sep 17 00:00:00 2001 From: Qi Wang Date: Tue, 12 Feb 2019 09:53:38 -0500 Subject: --password-stdin flag in `podman login` Support --password-stdin flag, reads a password from STDIN and pass it to `podman login`. Signed-off-by: Qi Wang --- docs/podman-login.1.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'docs/podman-login.1.md') diff --git a/docs/podman-login.1.md b/docs/podman-login.1.md index e72d1deca..3ac0e30ef 100644 --- a/docs/podman-login.1.md +++ b/docs/podman-login.1.md @@ -25,6 +25,10 @@ flag. The default path used is **${XDG\_RUNTIME_DIR}/containers/auth.json**. Password for registry +**--password-stdin** + +Take the password from stdin + **--username, -u** Username for registry @@ -86,6 +90,16 @@ $ podman login --cert-dir /etc/containers/certs.d/ -u foo -p bar localhost:5000 Login Succeeded! ``` +``` +$ podman login -u testuser --password-stdin < testpassword.txt docker.io +Login Succeeded! +``` + +``` +$ echo $testpassword | podman login -u testuser --password-stdin docker.io +Login Succeeded! +``` + ## SEE ALSO podman(1), podman-logout(1), crio(8) -- cgit v1.2.3-54-g00ecf