MirrorNest
← すべてのガイド

IT Tools

A self-hosted collection of over 80 small developer/IT utilities in one page — JSON formatter, JWT decoder, UUID generator, regex tester, hash generator, and many more.

対象: Any Docker hostdeveloper-toolsself-hostedDocker公式ホームページ ↗公式ドキュメント ↗
このガイドは上記リンク先にあるIT Tools公式ドキュメントをもとに作成されています。ディストリビューションやプロジェクトのバージョンは時間とともに変わるため、本番サーバーでこれらのコマンドを実行する前に、必ず公式ドキュメントで正確なパッケージ名・バージョン名を確認してください。
  1. 1Run the official container

    A single static container serves the entire tool collection, no database or backend required.

    docker run -d --name it-tools -p 8081:80 --restart unless-stopped corentinth/it-tools:latest
  2. 2Open it in a browser

    Every tool runs entirely client-side in JavaScript -- nothing you paste into it is ever sent back to the server.

    http://your-server-ip:8081
  3. 3(Optional) put it behind your reverse proxy

    Since it's a single static site, it works behind Nginx/Caddy/Traefik exactly like any other simple container -- no special configuration needed.

    Handy as a bookmarked internal tool for a team, replacing a dozen different public websites people would otherwise paste sensitive data (API keys, tokens) into.