aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-03-02 04:56:55 +0300
committerFrederick Muriuki Muriithi2024-03-02 04:56:55 +0300
commit3baf150595f0b7d7061a119f1c52d1dbea328e83 (patch)
tree10d69ee808e2d00c0125140aed0b0e3db312eceb
parent2ef459bde01a9853e46e31dfd86950e7c07ed4f3 (diff)
downloadgn-machines-3baf150595f0b7d7061a119f1c52d1dbea328e83.tar.gz
docs: Update process of finding out container PID.
-rw-r--r--README.org8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.org b/README.org
index d770195..74be432 100644
--- a/README.org
+++ b/README.org
@@ -60,9 +60,15 @@ When you start the container, you can get a shell into the container using the
can get with something like:
#+BEGIN_SRC sh
- ps -e | grep shepherd
+ ps -u root -f --forest | grep -A4 '/usr/local/bin/genenetwork-development-container'
#+END_SRC
+Where =/usr/local/bin/genenetwork-development-container= is the path used for
+invoking (running) the system container.
+
+Once you have a listing, get the PID for the =shepherd= process. You could pipe
+the output of the command above to ~grep 'shepherd'~ to ease your search.
+
That will give you output of the form:
#+BEGIN_EXAMPLE