Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stoakes/toolingcontainer
Tools for your day to day troubleshooting activities
https://github.com/stoakes/toolingcontainer
Last synced: about 3 hours ago
JSON representation
Tools for your day to day troubleshooting activities
- Host: GitHub
- URL: https://github.com/stoakes/toolingcontainer
- Owner: Stoakes
- License: mit
- Created: 2022-05-07T06:07:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-07T06:42:21.000Z (over 2 years ago)
- Last Synced: 2024-11-09T16:48:09.416Z (about 2 months ago)
- Language: Dockerfile
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tooling Container
Tools for your day to day troubleshooting activities. 🔧
* **Networking:** nc, nmap, bindutil, tcpdump, iputils
* **Databases:** postgresql-client
* **Console:** bash, less, jq, curl, openssl## Install
```
$ git clone
$ docker build -t stoakes/toolingcontainer .
```## Run
```bash
$ docker run -it stoakes/toolingcontainer bash
```## Run on Kubernetes
```bash
kubectl run -it toolingcontainer --image=stoakes/toolingcontainer --restart=Never -- bash
```### Notes
Automated build on https://hub.docker.com/r/stoakes/toolingcontainer
### Credits
This container is based on https://github.com/jsenon/toolingcontainer.
I mostly removed cloud provider specific tools & Python (saves 60 MB).
Release target is at max, once every 6 months; to keep the base image & tools up to date.