|
How to view the running processes of a Container
Author: Venkata Sudhakar
Docker is an open platform to develop, ship, and run containerized applications.
It separates infra from application to ease application development and support anywhere development strategy. The below example shows how to view the running processes of a Container by using container name or container id.
03 | Usage: docker top CONTAINER [ps OPTIONS] |
05 | Display the running processes of a container |
09 | CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES |
10 | ea3ee8f5f033 jenkins/jenkins "/sbin/tini -- /usr/..." 2 days ago Up 2 days 0.0 . 0.0 : 8080 -> 8080 /tcp, 0.0 . 0.0 : 50000 -> 50000 /tcp nifty_jones |
13 | C:\>docker top ea3ee8f5f033 |
14 | UID PID PPID C STIME TTY TIME CMD |
15 | 1000 7938 7911 0 Feb09 ? 00 : 00 : 04 /sbin/tini -- /usr/local/bin/jenkins.sh |
16 | 1000 7969 7938 0 Feb09 ? 00 : 03 : 20 java -Duser.home=/var/jenkins_home -Djenkins.model.Jenkins.slaveAgentPort= 50000 -jar /usr/share/jenkins/jenkins.war |
|
|