- 常用基础命令
1、docker info #查看docker版本等信息
2、docker search jenkins #搜索jenkins镜像
3、docker history nginx #查看镜像中各层内容及大小,每层对应的dockerfile中的一条指令。
4、docker network ls #显示当前主机上的所有网络
5、docker logs nginx #查看容器相关日志信息
6、docker logs nginx #动态查看容器日志信息
7、docker stats [容品名] #列出容器的资源使用情况,--no-stream 禁用流统计,--no-trunc不截断输出
- 容器镜像命令
1、docker images #显示本地镜像文件
2、docker images ls #显示本地镜像
3、docker images -q -a #查看所有的镜像ID
4、docker image inspect nginx #查看镜像具体详情