1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 00:22:08 +02:00
tldr/pages/linux/ctr.md
2022-07-19 11:15:32 -03:00

20 lines
351 B
Markdown

# ctr
> Manage `containerd` containers and images.
> More information: <https://containerd.io>.
- List all containers (running and stopped):
`ctr containers list`
- List all images:
`ctr images list`
- Pull an image:
`ctr images pull {{image}}`
- Tag an image:
`ctr images tag {{source_image}}:{{source_tag}} {{target_image}}:{{target_tag}}`