mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 04:21:14 +00:00
add it-tools
This commit is contained in:
parent
52afaf7c3a
commit
9a087e1d66
|
@ -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.
|
- [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.
|
- [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.
|
- [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.
|
- [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.
|
- [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
|
### 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.
|
- [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.
|
- [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.
|
||||||
|
|
3
examples/it-tools/README.md
Normal file
3
examples/it-tools/README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# References
|
||||||
|
|
||||||
|
- https://github.com/CorentinTh/it-tools
|
23
examples/it-tools/docker-compose.yml
Normal file
23
examples/it-tools/docker-compose.yml
Normal file
|
@ -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
|
Loading…
Reference in New Issue
Block a user