mirror of
https://github.com/tldr-pages/tldr
synced 2026-08-26 14:13:36 +01:00
Co-authored-by: Darío Hereñú <magallania@gmail.com> Co-authored-by: Emmanuel Ferdman <emmanuelferdman@gmail.com> Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
651 B
651 B
podman images
Podman 컨테이너 이미지 관리. 더 많은 정보: https://docs.podman.io/en/latest/markdown/podman-images.1.html.
- 모든 컨테이너 이미지 나열:
podman images
- 중간 이미지를 포함한 모든 컨테이너 이미지 나열:
podman images {{[-a|--all]}}
- 조용한 모드로 출력 나열 (숫자 ID만 표시):
podman images {{[-q|--quiet]}}
- 어떤 컨테이너에서도 사용되지 않는 모든 컨테이너 이미지 나열:
podman images {{[-f|--filter]}} dangling=true
- 이름에 특정 부분 문자열이 포함된 이미지 나열:
podman images "{{*이미지|이미지*}}"