mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-06 16:56:57 +00:00
Update cheatsheets
This commit is contained in:
33
tldr/podman-pull
Normal file
33
tldr/podman-pull
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# podman pull
|
||||
|
||||
> Pull images from a container registry.
|
||||
> More information: <https://docs.podman.io/en/latest/markdown/podman-pull.1.html>.
|
||||
|
||||
- Pull a specific container image:
|
||||
|
||||
`podman pull {{image}}:{{tag}}`
|
||||
|
||||
- Pull a container image in quiet mode:
|
||||
|
||||
`podman pull {{[-q|--quiet]}} {{image}}:{{tag}}`
|
||||
|
||||
- Pull all tags of a container image:
|
||||
|
||||
`podman pull {{[-a|--all-tags]}} {{image}}`
|
||||
|
||||
- Pull a container image for a specific platform, e.g. `linux/arm64`:
|
||||
|
||||
`podman pull --platform {{linux/arm64}} {{image}}:{{tag}}`
|
||||
|
||||
- Pull a container image without TLS verification:
|
||||
|
||||
`podman pull --tls-verify={{false}} {{image}}:{{tag}}`
|
||||
|
||||
- Display help:
|
||||
|
||||
`podman pull {{[-h|--help]}}`
|
||||
Reference in New Issue
Block a user