Skip to content

Commit 0a52a3d

Browse files
committed
Updates README
1 parent e81ef69 commit 0a52a3d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This project focus on providing system administration and troubleshooting tools
1010
* **bash** - GNU Bourne-Again SHell.
1111
* **bind-tools** - The ISC DNS tools (dig, nslookup, host).
1212
* **curl** - Tool to transfer data from or to a server.
13-
* **htop** - A ncurses-based process viewer for Linux.
13+
* **htop** - A ncurses-based process viewer for Linux. (built from source, allows to watch the **host's processes**)
1414
* **iotop** - Simple top-like I/O monitor.
1515
* **iptraf-ng** - An IP Network Monitoring tool.
1616
* **jq** - Commandline JSON processor.
@@ -27,7 +27,9 @@ This project focus on providing system administration and troubleshooting tools
2727

2828
Use `--net=host` allows `tcpdump` to access the host's network interfaces.
2929

30-
Optionally you can create a local directory and map it to the container:
30+
Use `-v /proc:/proc_host` allows `htop` to watch the host's processes.
31+
32+
Optionally you can create a local directory and map it to the container like `-v /tmp/data/:/tmp/data/`:
3133

3234
```bash
3335
mkdir /tmp/data
@@ -36,6 +38,7 @@ docker run \
3638
--rm \
3739
--name toolkit \
3840
--net=host \
41+
-v /proc:/proc_host \
3942
-v /tmp/data/:/tmp/data/ \
4043
-it \
4144
jonathadv/admin-toolkit \

0 commit comments

Comments
 (0)