1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 06:22:07 +02:00

podman-login: add Spanish translation (#15052)

This commit is contained in:
Igor Támara 2024-12-07 13:09:55 -05:00 committed by GitHub
parent ab918e8062
commit 0eca09edf7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,17 @@
# podman login
> Inicia sesión en un registro de contenedores (container registry).
> Nota: la ruta predeterminada de archivo de autenticación (authfile) en Linux es `$XDG_RUNTIME_DIR/containers/auth.json`, que generalmente se almacena en un `tmpfs` (en RAM).
> Más información: <https://docs.podman.io/en/latest/markdown/podman-login.1.html>.
- Inicia sesión en un registro (no permanente en Linux; persistente en Windows/macOS):
`podman login {{registry.example.org}}`
- Inicia sesión en un registro persistentemente en Linux:
`podman login --authfile $HOME/.config/containers/auth.json {{registry.example.org}}`
- Inicia sesión en un registro inseguro (HTTP):
`podman login --tls-verify=false {{registry.example.org}}`