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

ByteStash – Code Snippet Organizer

This web application couldn’t have come along at a better time. At my full time job recently I have been doing a LOT of PowerShell scripting on…

Draw.io – Whiteboarding/Diagramming Web Application

I have been using Draw.io for a while now at work to build Flowcharts and Network Diagrams. For being a free to use tool in an online…

AirTrail – Airline Flight History Tracker and Map

With all my recent travel, I thought this Application would be an good one to cover since I’ve been using it a lot recently. The timing on…

Nginx Proxy Manager – Reverse Proxy

I have been using Nginx Proxy Manager for a few years now. Not sure why it took me this long to write an article about it but…

Trilium Notes – Hierarchical Note Taking Application

In my quest to replace all of the Google Services with self hosted applications, I have been looking for a note taking application to replace Google Keep…

Lidify – Discover Artist based on your Library

If you followed my Lidarr setup and deployed that container, you might notice that there isn’t a “Discovery” feature for new artists like there is with Radarr…

Leave a Reply

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