podman-login
Authenticate with container registries
TLDR
Login to Docker Hub
$ podman login docker.io
Login to specific registry$ podman login [registry.example.com]
Login with credentials$ podman login -u [username] -p [password] [registry]
Login with stdin password$ echo [password] | podman login -u [user] --password-stdin [registry]
SYNOPSIS
podman login [options] registry
DESCRIPTION
podman login authenticates with container registries. Stores credentials in auth file for subsequent pulls and pushes. Supports Docker Hub, Quay.io, and private registries.
PARAMETERS
-u, --username name
Registry username.-p, --password pass
Registry password.--password-stdin
Read password from stdin.--tls-verify bool
Verify TLS certificates.--authfile file
Path to auth file.
SEE ALSO
podman(1), podman-logout(1)
