IT Tools is a self-hosted collection of handy developer utilities accessible from a single web UI.
It includes encoders/decoders, converters, generators, formatters, and network tools — all running locally.
flowchart LR
User([User]) -->|:8080| ITTools[IT Tools Web UI]
ITTools --> Encode[Encode / Decode]
ITTools --> Convert[Convert / Format]
ITTools --> Generate[Generate / Hash]
- IT Tools starts a lightweight web server serving the tool collection.
- Users access the UI in a browser — all processing happens client-side.
- No data leaves the container; everything runs locally.
- Tools include Base64, JWT decode, UUID generator, hash functions, cron parser, regex tester, and many more.
- Image:
ghcr.io/corentinth/it-tools:latest - Container name:
it-tools - Web UI:
http://<host-ip>:8080
From the repository root:
cd it-tools
docker compose up -dOpen:
- IT Tools UI:
http://localhost:8080
Useful commands:
docker compose ps
docker compose logs -f
docker compose restart
docker compose down- Bookmark frequently used tools (UUID generator, JSON formatter, Base64 encoder).
- Use the search bar to quickly find tools by name or category.
- Share the instance with your team as an internal utility dashboard.
- No login required — the UI is open by default.
- All processing is client-side; no data is sent to external servers.
- The container is stateless — no persistent volume needed.
- Change the host port mapping if
8080conflicts with other services. - See IT Tools GitHub for the full list of included utilities.