Docs/CloudNative/Docker/一些基本命令.md
2022-10-18 16:59:37 +08:00

11 lines
No EOL
307 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#### 查看docker进程宿主机上的真实pid
docker inspect --format '{{.State.Pid}}' containerID
#### 查看容器挂载的volume id等信息
docker volume ls
#### 查看镜像构建历史
docker history cid
#### 查看镜像构建历史展开CREATED BY 列)
docker history cid --no-trunc