tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Container Management > Docker > How to view the running processes of a Container

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.

01C:\>docker top --help
02 
03Usage:  docker top CONTAINER [ps OPTIONS]
04 
05Display the running processes of a container
06 
07 
08C:\>docker ps
09CONTAINER ID   IMAGE             COMMAND                  CREATED      STATUS      PORTS                                              NAMES
10ea3ee8f5f033   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
11 
12 
13C:\>docker top ea3ee8f5f033
14UID                 PID                 PPID                C                   STIME               TTY                 TIME                CMD
151000                7938                7911                0                   Feb09               ?                   00:00:04            /sbin/tini -- /usr/local/bin/jenkins.sh
161000                7969                7938                0                   Feb09               ?                   00:03:20            java -Duser.home=/var/jenkins_home -Djenkins.model.Jenkins.slaveAgentPort=50000 -jar /usr/share/jenkins/jenkins.war

 
  


  
bl  br