2014-04-16 14:07:55 -04:00
|
|
|
% DOCKER(1) Docker User Manuals
|
2014-06-30 22:58:04 -04:00
|
|
|
% Docker Community
|
|
|
|
% JUNE 2014
|
2014-04-16 14:07:55 -04:00
|
|
|
# NAME
|
2014-06-30 22:58:04 -04:00
|
|
|
docker-top - Display the running processes of a container
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# SYNOPSIS
|
2014-06-30 22:58:04 -04:00
|
|
|
**docker top**
|
2014-10-15 17:14:12 -04:00
|
|
|
[**--help**]
|
2014-06-30 22:58:04 -04:00
|
|
|
CONTAINER [ps OPTIONS]
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
2015-12-02 12:54:52 -05:00
|
|
|
Display the running process of the container. ps-OPTION can be any of the options you would pass to a Linux ps command.
|
|
|
|
|
|
|
|
All displayed information is from host's point of view.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-06-30 22:58:04 -04:00
|
|
|
# OPTIONS
|
2014-10-15 17:14:12 -04:00
|
|
|
**--help**
|
|
|
|
Print usage statement
|
2014-06-30 22:58:04 -04:00
|
|
|
|
|
|
|
# EXAMPLES
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
Run **docker top** with the ps option of -x:
|
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker top 8601afda2b -x
|
2014-04-16 14:07:55 -04:00
|
|
|
PID TTY STAT TIME COMMAND
|
|
|
|
16623 ? Ss 0:00 sleep 99999
|
|
|
|
|
|
|
|
|
|
|
|
# HISTORY
|
|
|
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
2014-07-01 20:30:25 -04:00
|
|
|
based on docker.com source material and internal work.
|
2014-07-02 21:07:42 -04:00
|
|
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
2015-06-09 09:33:41 -04:00
|
|
|
June 2015, updated by Ma Shimiao <mashimiao.fnst@cn.fujitsu.com>
|
2015-12-02 12:54:52 -05:00
|
|
|
December 2015, updated by Pavel Pospisil <pospispa@gmail.com>
|