All Projects β†’ arunvelsriram β†’ Utils

arunvelsriram / Utils

Licence: mit
Docker image with tools like curl, wget, ping, nslookup, dig, psql etc.

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Utils

Awesome Docker
🐳 A curated list of Docker resources and projects
Stars: ✭ 20,870 (+42491.84%)
Mutual labels:  tools, docker-image
Ramda Extension
🀘Utility library for functional JavaScript. With ❀️ to Ramda.
Stars: ✭ 139 (+183.67%)
Mutual labels:  utilities, tools
Utils
πŸ›  Lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.
Stars: ✭ 1,158 (+2263.27%)
Mutual labels:  utilities, tools
dftools
Tools for Star Wars: Dark Forces assets.
Stars: ✭ 18 (-63.27%)
Mutual labels:  tools, utilities
Wipe Modules
πŸ—‘οΈ Easily remove the node_modules folder of non-active projects
Stars: ✭ 304 (+520.41%)
Mutual labels:  utilities, tools
vistir
Setup / utilities which most projects eventually need
Stars: ✭ 30 (-38.78%)
Mutual labels:  tools, utilities
reactools
Create React interfaces is easy.
Stars: ✭ 14 (-71.43%)
Mutual labels:  tools, utilities
React Native Slowlog
A high-performance timer based profiler for React Native that helps you track big performance problems.
Stars: ✭ 363 (+640.82%)
Mutual labels:  tools, debugging
Bottomline
A full-on PHP manipulation utility-belt that provides support for the usual functional. πŸ“¦
Stars: ✭ 462 (+842.86%)
Mutual labels:  utilities, tools
Max Human Pose Estimator
Detect humans in an image and estimate the pose for each person
Stars: ✭ 44 (-10.2%)
Mutual labels:  docker-image
Docker registry cli
Docker Registry CLI - Provides search functionality for Docker Registry (UI and CLI)
Stars: ✭ 48 (-2.04%)
Mutual labels:  docker-image
Jsoncsv
a command tool easily convert json file to csv or xlsx
Stars: ✭ 43 (-12.24%)
Mutual labels:  tools
Commently
πŸ˜€πŸ’¬ Easily comment and update comments on GitHub PRs
Stars: ✭ 45 (-8.16%)
Mutual labels:  tools
Docker Redmine
Docker Image for Redmine
Stars: ✭ 1,044 (+2030.61%)
Mutual labels:  docker-image
Uvicorn Gunicorn Fastapi Docker
Docker image with Uvicorn managed by Gunicorn for high-performance FastAPI web applications in Python 3.6 and above with performance auto-tuning. Optionally with Alpine Linux.
Stars: ✭ 1,014 (+1969.39%)
Mutual labels:  docker-image
Docker Bind
Bind caching DNS server on Debian with wild-card domain support
Stars: ✭ 50 (+2.04%)
Mutual labels:  docker-image
Ros docker
Docker images for ROS master, bridge and nodes
Stars: ✭ 43 (-12.24%)
Mutual labels:  docker-image
Soflow
A ScriptableObject oriented design SDK.
Stars: ✭ 43 (-12.24%)
Mutual labels:  tools
Sassyfication
πŸ’…Library with sass mixins to speed up your css workflow.
Stars: ✭ 51 (+4.08%)
Mutual labels:  utilities
Leanote Dockerfile
docker-compose for leanote.
Stars: ✭ 49 (+0%)
Mutual labels:  docker-image

utils CI

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

Run tests:

$ ./run-test
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].