519
A compact, multi-arch Docker image packed with common network and container troubleshooting tools. It includes an nginx web server to keep the container running and provide a simple landing page with the container's IP and the active HTTP/HTTPS ports. Ideal for testing connectivity, DNS, routing, HTTP(S) endpoints, and more.
Pull:
docker pull ericwastakenondocker/network-multitool-base
Size: ~16 MB compressed, ~38 MB uncompressed
Note: SSL certificates are self-signed for "localhost" and placed in /certs/. For testing HTTPS with curl, use -k
to ignore certificate warnings.
Basic run (Docker):
docker run -d --name network-multitool-base \
-p 80:80 -p 443:443 \
ericwastakenondocker/network-multitool-base
Exec into the container:
docker exec -it network-multitool-base /bin/bash
You can override the default ports 80 (HTTP) and 443 (HTTPS) using environment variables HTTP_PORT and HTTPS_PORT.
This is useful when joining another container's namespace, using host networking, or avoiding port conflicts.
Example with custom ports:
docker run -d --name network-multitool-base \
-e HTTP_PORT=1180 -e HTTPS_PORT=11443 \
-p 1180:1180 -p 11443:11443 \
ericwastakenondocker/network-multitool-base
docker run --network host -d --name network-multitool-base \
ericwastakenondocker/network-multitool-base
If ports 80/443 are busy on the host, set custom ports:
docker run --network host -d --name network-multitool-base \
-e HTTP_PORT=1180 -e HTTPS_PORT=11443 \
ericwastakenondocker/network-multitool-base
When the container starts, the entrypoint adjusts nginx to listen on the provided ports and writes a concise banner
to /usr/share/nginx/html/index.html showing the hostname, IP, and ports.
/usr/share/nginx/html if you want toThis is a maintenance fork of the original Network-MultiTool. For details and full documentation, see the repository README.
(Repo: https://github.com/ericwastaken/Network-MultiTool-Base)
Content type
Image
Digest
sha256:65e55a6cd…
Size
25.4 MB
Last updated
about 1 year ago
docker pull ericwastakenondocker/network-multitool-base