forked from tldr-pages/tldr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docker-containers: add Korean translation (tldr-pages#3760)
- Loading branch information
1 parent
7f5a2b0
commit e62ba6e
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# docker container | ||
|
||
> 도커 컨테이너들을 관리한다. | ||
> 더 많은 정보: <https://docs.docker.com/engine/reference/commandline/container/>. | ||
- 현재 실행중인 도커 컨테이너들의 목록: | ||
|
||
`docker container ls` | ||
|
||
- 하나 혹은 더 많은 정지된 컨테이너들 실행하기: | ||
|
||
`docker container start {{컨테이너1_이름}} {{컨테이너2_이름}}` | ||
|
||
- 하나 혹은 더 많은 실행중인 컨테이너들 종료하기: | ||
|
||
`docker container kill {{컨테이너_이름}}` | ||
|
||
- 하나 혹은 더 많은 실행중인 컨테이너들 중지하기: | ||
|
||
`docker container stop {{컨테이너_이름}}` | ||
|
||
- 하나 혹은 더 많은 컨테이너들 내에서 모든 프로세스들 일시중지하기: | ||
|
||
`docker container pause {{컨테이너_이름}}` | ||
|
||
- 하나 혹은 더 많은 컨테이너들에 대한 상세 정보 표시하기: | ||
|
||
`docker container inspect {{컨테이너_이름}}` | ||
|
||
- 컨테이너의 파일 시스템을 tar 아카이브로 내보내기: | ||
|
||
`docker container export {{컨테이너_이름}}` | ||
|
||
- 컨테이너의 변경점들로부터 새 이미지 생성하기: | ||
|
||
`docker container commit {{컨테이너_이름}}` |