Skip to content

Commit 9a087e1

Browse files
committed
add it-tools
1 parent 52afaf7 commit 9a087e1

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,14 @@ docker compose up
9898
- [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.
9999
- [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.
100100
- [WatchYourLAN](examples/watchyourlan) - Lightweight network IP scanner with web GUI.
101-
- [Network-Multitool](examples/network-multitool) - Multi-arch multitool for container network troubleshooting.
102101
- [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.
103102
- [dockcheck-web](examples/dockcheck-web) - A webpage showing available image updates for your running containers.
104103

104+
### Tools & Helpers
105+
- [Network-Multitool](examples/network-multitool) - Multi-arch multitool for container network troubleshooting.
106+
- [IT-Tools](examples/it-tools) - Collection of handy online tools for developers, with great UX.
107+
- ~~[GCHQ CyberChef](https://gchq.github.io/CyberChef/)~~ - The Cyber Swiss Army Knife - a web app for encryption, encoding, compression and data analysis.
108+
105109
### Recipe Managers
106110
- [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.
107111
- [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.

examples/it-tools/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# References
2+
3+
- https://github.com/CorentinTh/it-tools

examples/it-tools/docker-compose.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: '3.3'
2+
3+
services:
4+
it-tools:
5+
image: corentinth/it-tools
6+
container_name: it-tools
7+
hostname: it-tools
8+
restart: unless-stopped
9+
ports:
10+
- 8080:80/tcp
11+
#networks:
12+
# - proxy # or use dev for testing purposes
13+
#labels:
14+
# - traefik.enable=true
15+
# - traefik.http.routers.it-tools.rule=Host(`tools.example.com`)
16+
# - traefik.http.services.it-tools.loadbalancer.server.port=80
17+
# - traefik.docker.network=proxy # or use dev for testing purposes
18+
## # Part for optional traefik middlewares
19+
# - traefik.http.routers.it-tools.middlewares=local-ipwhitelist@file
20+
21+
#networks:
22+
# proxy: # or use dev for testing purposes
23+
# external: true

0 commit comments

Comments
 (0)