From 9a087e1d66a2bab7e3183f2fb591255728fca67d Mon Sep 17 00:00:00 2001 From: LRVT <21357789+l4rm4nd@users.noreply.github.com> Date: Wed, 29 Mar 2023 14:36:35 +0200 Subject: [PATCH] add it-tools --- README.md | 6 +++++- examples/it-tools/README.md | 3 +++ examples/it-tools/docker-compose.yml | 23 +++++++++++++++++++++++ 3 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 examples/it-tools/README.md create mode 100644 examples/it-tools/docker-compose.yml diff --git a/README.md b/README.md index 54ac7ce..db52ad6 100644 --- a/README.md +++ b/README.md @@ -98,10 +98,14 @@ docker compose up - [Openspeedtest](examples/openspeedtest) - A free and open-source HTML5 network performance estimation tool written in vanilla JavaScript and only uses built-in web APIs like XHR, HTML, CSS, JS and SVG. - [Goaccess](examples/nginx-proxy-manager-goaccess) - Real-time web log analyzer and interactive viewer that visualizes various logs of popular reverse proxies such as Nginx, Nginx Proxy Manager and Traefik. - [WatchYourLAN](examples/watchyourlan) - Lightweight network IP scanner with web GUI. -- [Network-Multitool](examples/network-multitool) - Multi-arch multitool for container network troubleshooting. - [Home Assistant](examples/homeassistant) - Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server. - [dockcheck-web](examples/dockcheck-web) - A webpage showing available image updates for your running containers. +### Tools & Helpers +- [Network-Multitool](examples/network-multitool) - Multi-arch multitool for container network troubleshooting. +- [IT-Tools](examples/it-tools) - Collection of handy online tools for developers, with great UX. +- ~~[GCHQ CyberChef](https://gchq.github.io/CyberChef/)~~ - The Cyber Swiss Army Knife - a web app for encryption, encoding, compression and data analysis. + ### Recipe Managers - [Tandoor](examples/tandoor) - Django application to manage, tag and search recipes using either built-in models or external storage providers hosting PDFs, Images or other files. - [Mealie](examples/mealie) - Material design inspired recipe manager with category and tag management, shopping-lists, meal-planner, and site customizations. Mealie is focused on simple user interactions to keep the whole family using the app. diff --git a/examples/it-tools/README.md b/examples/it-tools/README.md new file mode 100644 index 0000000..ee500cc --- /dev/null +++ b/examples/it-tools/README.md @@ -0,0 +1,3 @@ +# References + +- https://github.com/CorentinTh/it-tools diff --git a/examples/it-tools/docker-compose.yml b/examples/it-tools/docker-compose.yml new file mode 100644 index 0000000..f9ac298 --- /dev/null +++ b/examples/it-tools/docker-compose.yml @@ -0,0 +1,23 @@ +version: '3.3' + +services: + it-tools: + image: corentinth/it-tools + container_name: it-tools + hostname: it-tools + restart: unless-stopped + ports: + - 8080:80/tcp + #networks: + # - proxy # or use dev for testing purposes + #labels: + # - traefik.enable=true + # - traefik.http.routers.it-tools.rule=Host(`tools.example.com`) + # - traefik.http.services.it-tools.loadbalancer.server.port=80 + # - traefik.docker.network=proxy # or use dev for testing purposes + ## # Part for optional traefik middlewares + # - traefik.http.routers.it-tools.middlewares=local-ipwhitelist@file + +#networks: +# proxy: # or use dev for testing purposes +# external: true