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

ctr: add page (#4928)

This commit is contained in:
hellojukay 2020-11-05 18:09:18 +08:00 committed by GitHub
parent 8f73cca2e7
commit ca9301add6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
pages/linux/ctr.md Normal file
View file

@ -0,0 +1,20 @@
# 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}}`