怎样查看docker容器的PID

  • 来源:网络
  • 更新日期:2020-08-13

摘要:一、docker container top(推荐教程:docker教程)[xxx@single xxx]# docker container top <container>以redis示例[xxx@single xxx]# docker container top redis从输出结果中

一、docker container top

(推荐教程:docker教程)

[xxx@single xxx]# docker container top <container>

以redis示例

[xxx@single xxx]# docker container top redis

从输出结果中可以看到redis容器的PID

PID        USER        TIME        COMMAND
2208        999        1:47        redis-server *:637912

二、docker container inspect

[xxx@single xxx]# docker inspect -f '{{.State.Pid}}' <container>1

以redis示例

[xxx@single xxx]# docker inspect -f '{{.State.Pid}}' redis1

此命令会直接输出PID

2208