Docs / Self-Hosted Applications / How to Self-Host IT Tools Collection

How to Self-Host IT Tools Collection

By Admin · Mar 1, 2026 · Updated Apr 23, 2026 · 28 views · 1 min read

What Is IT Tools?

IT Tools is a collection of handy online tools for developers and IT professionals. Self-hosting it gives your team a private, fast toolbox without relying on random websites.

Requirements

  • A Breeze with at least 256 MB RAM
  • Docker installed

Installation

docker run -d --name it-tools \
  -p 8080:80 \
  --restart unless-stopped \
  corentinth/it-tools:latest

Available Tools

IT Tools includes 50+ utilities organized by category:

Crypto

  • Hash generators (MD5, SHA-1, SHA-256, SHA-512)
  • UUID generator
  • Encrypt/decrypt text
  • RSA key pair generator
  • Password generator

Converters

  • Base64 encode/decode
  • URL encode/decode
  • JSON to YAML, YAML to JSON
  • Unix timestamp converter
  • Color converter (HEX, RGB, HSL)

Web

  • URL parser
  • HTML entities encode/decode
  • JWT decoder
  • QR code generator
  • HTTP status codes reference

Network

  • IPv4 subnet calculator
  • MAC address lookup
  • IPv4 address converter

Development

  • JSON formatter and validator
  • SQL formatter
  • Regex tester
  • Crontab generator
  • Diff checker

Was this article helpful?