Note Mark - A web-based markdown notes app

Another note taking app? Why yes it is. I found this one over on Reddit recently and have been using it since. It’s fast, simple and I really just like the way it looks. Features: Markdown (GitHub Flavored Markdown, see spec here) HTML sanitization, minimizing XSS attacks Mobile Friendly Friendly “Slug” based URLs for cleaner links Dark & Light Theme Notebook Sharing Custom flat-file based storage system (easy to backup and synchronize) Multiple views for a note (rendered, plain) Editor with shortcuts Docker Compose: version: "3" volumes: data: services: backend: image: ghcr....

May 16, 2024

Pterodactyl - An open-source game server management panel

Pterodactyl® is a free, open-source game server management panel built with PHP, React, and Go. Designed with security in mind, Pterodactyl runs all game servers in isolated Docker containers while exposing a beautiful and intuitive UI to end users. I will admit that this one was a bit of a pain to set up, but it was worth it in the end. I’ve messed around with CubeCoders AMP before and, even though it’s a paid app, the UI is very ugly to me and I’m a bit of a snob when it comes to GUIs so I like my apps to look nice....

May 14, 2024

Dockge - An easy-to-use and reactive docker stack manager.

Portainer & Yacht have been around for quite some time, but both can be a bit complex for newer users to self-hosting. Recently I came across a new manager called Dockge. This manager is still fairly new, at the time of writing this article, but is already proving to be a very useful app. Dockge was created by Louis Lam, who also created Uptime Kuma. Here’s some of the features listed on their official GitHub:...

May 7, 2024

Portainer

https://docs.portainer.io/start/install-ce/server/docker/linux 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 portainer/portainer-ce:latest

May 7, 2024

Arr Stack

This stack includes: Gluetun, Jellyfin, Jellyseer, Jackett (can be swapped out for Prowlarr), Sonarr, Radarr and qBittorrent. version: "3" networks: default: name: stack-net external: false services: gluetun: image: qmcgaw/gluetun cap_add: - NET_ADMIN ports: - 8080:8080 environment: - VPN_SERVICE_PROVIDER=mullvad #THIS CAN BE CHANGED TO YOUR VPN PROVIDER - VPN_TYPE=wireguard - WIREGUARD_PRIVATE_KEY= #OBTAIN THIS FROM YOUR MULLVAD ACCOUNT - WIREGUARD_ADDRESSES= #OBTAIN THIS FROM YOUR MULLVAD ACCOUNT - OWNED_ONLY=yes jellyfin: container_name: jellyfin image: linuxserver/jellyfin environment: - TZ=America/New_York - PGID=1001 - PUID=1001 ports: - 8096:8096 - 1900:1900 volumes: - ....

May 3, 2024