mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-04 00:13:32 +02:00
docker-images: Add Korean Translation (#3765)
This commit is contained in:
parent
711a1c4afb
commit
bd55a42bc9
1 changed files with 20 additions and 0 deletions
20
pages.ko/common/docker-images.md
Normal file
20
pages.ko/common/docker-images.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# docker images
|
||||
|
||||
> 도커 이미지를 관리한다.
|
||||
> 더 많은 정보: <https://docs.docker.com/engine/reference/commandline/images/>.
|
||||
|
||||
- 모든 도커 이미지 목록보기:
|
||||
|
||||
`docker images`
|
||||
|
||||
- 중간자를 포함한 모든 도커 이미지 목록보기:
|
||||
|
||||
`docker images -a`
|
||||
|
||||
- 잔잔한 모드로 결과 목록보기(수로 표현된 ID들만):
|
||||
|
||||
`docker images -q`
|
||||
|
||||
- 어떠한 컨테이너에서도 사용되지 않은 모든 도커 이미지 목록보기:
|
||||
|
||||
`docker images --filter dangling=true`
|
Loading…
Add table
Reference in a new issue