Sign inSign up

mistermik/utils

By mistermik

Updated about 6 years ago

curl, wget, ping, sqlcmd, netcat, nslookup,host, dig, psql, mysql, swaks etc.

Image
0

336

mistermik/utils repository overview

utils Build Status

Docker image with tools like curl, wget, ping, netcat, nslookup,host, dig, psql, mysql, swaks etc.

Use Case

When using containers you might want to test the connectivity between the containers. Your application containers won't be having tools like curl, ping, psql client etc. So you can start a one-off container using this image and test your application.

For example, to run a one-off container in Kubernetes:

kubectl run --rm utils -it --generator=run-pod/v1 --image arunvelsriram/utils bash

# You will be seeing a bash prompt
$ psql -h hostname -U test -d test
...
...
$ exit

Note: --rm option will delete the pod after exiting from the container

General Usage

$ docker pull arunvelsriram/utils
$ docker run --rm -it arunvelsriram/utils bash

# inside the container
$ ping google.com
$ ifconfig
...
$ exit

Contributing

Build and run tests:

$ ./build

Tag summary

Content type

Image

Digest

Size

221 MB

Last updated

about 6 years ago

docker pull mistermik/utils