IT Tools – Handy tools for developers

The other day, I came across this post from MariusHosting about a self hosted docker container that had built in tools for IT developers. After checking out the demo site, I was definitly interested. It has all kinds of tools I normally have to search online to use, examples include Docker run to Docker compose converter, Password strength analyser, Color code converter, Crontab generator, and MAC address lookup to name a few. CorentinTh did a really good job of building this out.

This container is also very light weight, only about 20MB and doesn’t require any docker volumes to run.


Deployment

---
version: '3.8'
services:
    it-tools:
        image: corentinth/it-tools:latest
        container_name: it-tools
        ports:
            - {port number}:80
        restart: always

Stuff to change for your deployment:

  • Port number – You will want to update this to a port that works well inside your environment. It will be the port that you connect to the web interface of the container.

Thats it! Just navigate to the URL of your docker server followed by the port number you entered and you will be presented with the website.

On the main body of the site is all the tools which you can search at the top. On the left side of the screen is the same list built out into categories to make it easier to find what you need.

Related Posts

Pinchflat – Channel Monitoring YouTube Downloader

Pinchflat is a self-hosted app for downloading YouTube content built using yt-dlp. It’s designed to be lightweight, self-contained, and easy to use. You set up rules for…

SearXNG – Internet Metasearch Engine

SearXNG is a free internet metasearch engine which aggregates results from more than 70 search services. Here is the Wikipedia page on how metasearch engines work. With…

Tandoor Recipes

Tandoor is powerful container that allows you to take control of your cooking. The main purpose for the application is to manage recipes but you can also…

Kanboard – Project Management Software

I orginally found this container after DBTech created a video for his deployment guide. I have been using the software for a few months now and really…

Manyfold – 3D Printing Model Manager

Manyfold is an open source, web application for managing your collection of 3D modeling file, particularly focused on 3D Printing models. Backstory time, a few months ago,…

WireGuard Server – VPN Docker Container

I have been running a WireGuard VPN Server inside a Docker Container for about 2 years now. I never did an article on it because it was…

Leave a Reply

Your email address will not be published. Required fields are marked *