File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ This project focus on providing system administration and troubleshooting tools
10
10
* ** bash** - GNU Bourne-Again SHell.
11
11
* ** bind-tools** - The ISC DNS tools (dig, nslookup, host).
12
12
* ** 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 ** )
14
14
* ** iotop** - Simple top-like I/O monitor.
15
15
* ** iptraf-ng** - An IP Network Monitoring tool.
16
16
* ** jq** - Commandline JSON processor.
@@ -27,7 +27,9 @@ This project focus on providing system administration and troubleshooting tools
27
27
28
28
Use ` --net=host ` allows ` tcpdump ` to access the host's network interfaces.
29
29
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/ ` :
31
33
32
34
``` bash
33
35
mkdir /tmp/data
@@ -36,6 +38,7 @@ docker run \
36
38
--rm \
37
39
--name toolkit \
38
40
--net=host \
41
+ -v /proc:/proc_host \
39
42
-v /tmp/data/:/tmp/data/ \
40
43
-it \
41
44
jonathadv/admin-toolkit \
You can’t perform that action at this time.
0 commit comments