it-tools is a bundle of browser-based development utilities that run entirely offline. It includes tools for base64 encoding/decoding, JSON formatting, hashing, regex testing and more. Designed for developers, it eliminates the need to visit multiple online sites for simple tasks. All tools are available in a single clean interface and organized for quick access. It’s a handy all-in-one Swiss Army knife for tech professionals and hobbyists.

Setup

docker-compose.yaml

version: '3.9'

networks:
  docker_net:
    external: true

services:
  it-tools:
    image: ghcr.io/corentinth/it-tools:latest
    container_name: it-tools
    restart: unless-stopped
    ports:
      - 8081:80
    networks:
      - docker_net

Sources