mirror of https://github.com/CrimsonTome/tldr.git
21 lines
349 B
Markdown
21 lines
349 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 {{souce_image}}:{{source_tag}} {{target_image}}:{{target_tag}}`
|