Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

38 total results found

Docker Apps (Reddit Post)

Hosted Services/Apps

Analytics:  [Grafana](https://hub.docker.com/r/grafana/grafana)  [Uptime Kuma](https://github.com/louislam/uptime-kuma)  [Prometheus](https://hub.docker.com/r/prom/prometheus)  - [AlertManager](https://prometheus.io/docs/alerting/latest/alertmanager/)  - [node...

Docker Apps (under construction)

Hosted Services/Apps

Maintenance & Dev Analytics Grafana: https://hub.docker.com/r/grafana/grafanaUptime Kuma: https://github.com/louislam/uptime-kumaPrometheus: https://hub.docker.com/r/prom/prometheus- AlertManager: https://prometheus.io/docs/alerting/latest/alertmanager/- nod...

Note to self

Hosted Services/Apps

Organize apps by category and give them descriptions and such.

Useful Commands

Linux

"sudo pacman -Sy""sudo pacman -S git fakeroot binutils""cd ~/Downloads""git clone https://aur.archlinux.org/realvnc-vnc-viewer.git""cd realvnc-vnc-viewer""sudo pacman -U realvnc-vnc-viewer-*-x86_64.pkg.tar.zst" "su" - elevate prompt so you don't need sudo"pwd...

Docker Commands

Linux

docker stats --format "table {{.ID}}\t{{.Name}}\t{{.CPUPerc}}\t{{.MemUsage}}\t{{.MemPerc}}\t{{.NetIO}}\t{{.BlockIO}}\t{{.PIDs}}" --no-stream docker stats --format "table {{.ID}}\t{{.Name}}\t{{.CPUPerc}}\t{{.MemPerc}}\t{{.NetIO}}\t{{.BlockIO}}" --no-stream  

Cabling 101

Networking

This is specifically about making Ethernet cables but a lot of this will likely apply to most types of low voltage/data cables. So, there are standard pinouts and such that you can learn from Wikipedia and other places.  I'm not going to bore you too much wit...

Enterprise Equipment

Networking

Unless you plan to get certified with Cisco and need something to practice on, you'll almost always be better off either rolling your own or buying something more affordable.  Enterprise equipment is stupidly expensive and cares nothing about how loud or hot t...

ToDo List

Hosted Services/Apps

Migrate this list to bookstacksClean and setup living room (40% complete)Find battery chargers and desk fanMigrate IRC and Torrent browser tabs off of old serverFind old netbook, again - set it up for remote adminConvert old server to either Linux Mint or Prox...

Current Server Plan

Hosted Services/Apps

Server list with intended roles.  Servers named N/A haven't been purchased yet. Ares[NUC]: Hardware:  NUC, Anker dock, Wacom Tablet ... Roles - Command Center, Media Server, Productivity/Office Server, Security Server, Test Server, Work Station Brigid[Fire...

Network List

Hosted Services/Apps

Hardware - Services Universal Services - Docker - Portainer (Replace with Komodo) *Note:  Look into Kubernetes and Docker Swarm; Re-evaluate Proxmox Router - DHCP - NAT Brigid (NAS/Primary Network; not fully setup) - DNS (Technitium; not setup) - Reverse D...

LAN Index

Index

LAN Only - These links will only work when connected from the local network. http://10.20.10.75:83 or http://nuc.zgp.us:83 - PiHole, again.  Obviously, only the direct IP link works. http://nuc.zgp.us:8181 - Tautulli for Plex analytics https://nuc.zgp.us:82...

The Lounge + ZNC

Hosted Services/Apps

So, this was more complicated than it needed to be but it's manageable.  I know The Lounge has a page dedicated to the question of why use ZNC when The Lounge does the same thing.  Well, it's in case you want to use a different client than The Lounge.  Sometim...

Docker/Docker Compose Setup

Docker/Docker Compose Setup Docker/Docker Compose

The actual setup is fairly easy.  However, you have to do some prep work first. Install docker:  sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin Verify:  sudo systemctl is-active docker Add your user to Dock...

Docker Prep/Prerequisites (Debian)

Docker/Docker Compose Setup Docker/Docker Compose

This guide assumes you are running a Debian based OS.  So, it will work regardless of whether you are using Proxmox, OMV, Ubuntu Server, Linux Mint or anything else that uses APT.  If you are using some flavor of Arch, Fedora, FreeBSD or any of their derivativ...

OMV Setup

Server OS File Server

### Make proper instructions later

OMV Install Notes

Server OS File Server

Further reading: List of (mostly outdated) video guides - https://forum.openmediavault.org/index.php?thread/23005-installation-and-setup-videos-beginning-intermediate-and-advanced/&postID=175857#post175857Written guides - https://forum.openmediavault.org/inde...

Install Portainer

Docker/Docker Compose Portainer (Optional; Beginner)

Create Docker Volume:  docker volume create portainer_data Deploy Portainer: docker run -d \   -p 8000:8000 \   -p 9443:9443 \   --name portainer \   --restart=always \   -v /var/run/docker.sock:/var/run/docker.sock \   -v portainer_data:/data \   por...

11/15/2025 - Fix

Docker/Docker Compose Portainer (Optional; Beginner)

So, the current version of Docker depreciates the version of the API used by Portainer.  This can be fixed a couple of ways.  One is to downgrade the version of Portainer to 2.20.2 but this didn't work too well for me.  The other method is to lower the minimum...