Administration and troubleshooting tools inside a docker container
8.9K
This project focus on providing system administration and troubleshooting tools without the need of installing them in the host system.
Use --net=host allows tcpdump to access the host's network interfaces.
Use -v /proc:/proc_host allows htop to watch the host's processes. Note that htop is unable to kill any host's processes.
Optionally you can create a local directory and map it to the container like -v /tmp/data/:/tmp/data/:
mkdir /tmp/data
docker run \
--rm \
--name toolkit \
--net=host \
-v /proc:/proc_host \
-v /tmp/data/:/tmp/data/ \
-it \
jonathadv/admin-toolkit \
bash
Content type
Image
Digest
sha256:49bcb6854…
Size
73 MB
Last updated
over 3 years ago
docker pull jonathadv/admin-toolkit