IT-Tools

What is it?
IT-Tools is a self-hosted, browser-based toolbox for devs/ops: encoders/decoders, hash/JWT tools, JSON↔YAML/TOML, regex testers, UUID/ULID, color pickers, network calculators, and more. It’s a single-page app with no database.

Why I use it
One URL for quick conversions and sanity checks during homelab work. Zero setup, tiny footprint.

Deploy with Portainer (Web editor)
Stacks → Add stackWeb editor → paste the Compose below and Deploy.

services:
  ittols:
    container_name: IT-TOOLS
    image: corentinth/it-tools
    healthcheck:
     test: curl -f http://localhost:80/ || exit 1
    mem_limit: 2g
    cpu_shares: 768
    security_opt:
      - no-new-privileges:true
    restart: on-failure:5
    ports:
      - 5545:80
    networks:
      - homelab

networks:
  homelab:
    external: true
YAML