Blog

Latest Blog Posts

I write about my homelab, side hustles, investing, and also have some technical documentation

Setting Up Diskover Data with Docker in 2024

Info on deploying Diskover Data with a simple docker compose file, as well as scheduling your scans

Setting Up Diskover Data with Docker in 2024

Docker Compose


services:
  diskover:
    image: lscr.io/linuxserver/diskover
    container_name: diskover
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/Chicago
      - ES_HOST=elasticsearch
      - ES_PORT=9200
      - ES_USER=elastic
      - ES_PASS=password
    volumes...

Setting Up a New (Ubuntu) Server

What could you possibly do with a new Ubuntu 22 Server?

Setting Up a New (Ubuntu) Server

Get Docker

Here is an easy way to get docker up and running. You can even put this in a script.

#!/bin/bash
# https://docs.docker.com/engine/install/ubuntu/#install-using-the-convenience-script

ROOTLESS_USER=$USER
if [ $# != 0 ]
then
        ROOTLESS_USER=$1
fi

echo "Running with $ROOTLESS_USE...