top

  • 用法
  1. Usage: docker top [OPTIONS] CONTAINER [ps OPTIONS]
  2. Display the running processes of a container
  3. --help=false Print usage
  • 例子

运行一个之前的例子:

  1. $ sudo docker run -d ubuntu /bin/sh -c "while true; do echo hello world; sleep 1; done"

然后执行docker top 命令,可以查看到容器内进程

  1. $ sudo docker top 52c058ff716d
  2. UID PID PPID C STIME TTY TIME CMD
  3. root 6326 1489 0 23:58 ? 00:00:00 /bin/sh -c while true; do echo hello world; sleep 1; done
  4. root 6410 6326 0 23:59 ? 00:00:00 sleep 1