tldr/pages.zh_TW/common/docker.md

38 lines
821 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# docker
> 管理 Docker 容器和映像檔。
> 此命令也有關於其子命令的文件,例如:`docker run`.
> 更多資訊:<https://docs.docker.com/engine/reference/commandline/cli/>.
- 列出目前正在運行的 docker 容器:
`docker ps`
- 列出所有 docker 容器(包括停止的容器):
`docker ps -a`
- 透過映像檔啟動容器,並為容器命名:
`docker run --name {{容器名稱}} {{映像檔}}`
- 啟動或停止現有容器:
`docker {{start|stop}} {{容器名稱}}`
- 從 docker registry 中拉取映像檔:
`docker pull {{映像檔}}`
- 從正在運行的容器內打開一個 shell
`docker exec -it {{容器名稱}} {{sh}}`
- 刪除一個停止的容器:
`docker rm {{容器名稱}}`
- 獲取並查看容器的日誌:
`docker logs -f {{容器名稱}}`