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

Public

Guides

An assortment of useful guides for self-hosting.

Articles

Personal articles and information about this website.

Docker & Compose

A list of docker resources and docker compose snippets.

BookStack

Helpful tips and guides for Bookstack. (https://www.bookstackapp.com/)

Hide certain features/items

BookStack

Hide/remove specific features from your BookStack installation. Further customization options can be found here: https://www.bookstackapp.com/hacks/

Docker

Docker & Compose

A list of docker guides and resources. (https://docs.docker.com/)

Docker Compose

Docker & Compose

A list of docker compose scripts that I have used and have worked for me. (https://docs.docker.com/compose/)

Pterodactyl Panel

Guides

Guides and tips for the Pterodactyl Panel. (https://pterodactyl.io/)

BookStack

Docker & Compose Docker Compose

https://www.bookstackapp.com/ version: "2" services:   bookstack:     image: lscr.io/linuxserver/bookstack     container_name: bookstack     environment:       - PUID=1000       - PGID=1000       - APP_URL=       - DB_HOST=bookstack_db       - DB_PO...

File Browser

Docker & Compose Docker Compose

https://filebrowser.org/ version: "3" services:   filebrowser:     image: hurlenko/filebrowser     user: "${UID}:${GID}"     ports:       - 443:8080     volumes:       - /DATA_DIR:/data       - /CONFIG_DIR:/config     environment:       - FB_BASE...

Homepage

Docker & Compose Docker Compose

https://gethomepage.dev version: "3.3" services:   homepage:     image: ghcr.io/benphelps/homepage:latest     container_name: homepage     ports:       - 3000:3000     volumes:       - /home/homepage/config:/app/config # Make sure your local config di...

IT-Flow

Docker & Compose Docker Compose

https://itflow.org/ version: "3.9" ########################### NETWORKS networks:   wan:     name: wan     driver: bridge          itflow-db:     name: itflow-db     external: false ########################### VOLUMES volumes:   itflow-db: ...

Mealie

Docker & Compose Docker Compose

https://mealie.io/ --- version: "3.7" services:   mealie:     image: ghcr.io/mealie-recipes/mealie:v1.0.0 #      container_name: mealie     ports:         - "9925:9000" #      deploy:       resources:         limits:           memory: 1000M...

Docker w/Cloudflare Tunnels

Guides Pterodactyl Panel

This is the guide I used to get everything working for me. I have had issues with the other installation types I tried, but this one got everything running nice and smooth. I do have the panel and wings running in the same LXC without issues. https://docs.aga...

Arr Stack

Docker & Compose Docker Compose

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     ...

Kavita

Docker & Compose Docker Compose

https://www.kavitareader.com/ version: '3.9'     services:         kavita:             image: kizaing/kavita:latest             volumes:                 - ./manga:/manga                 - ./data:/kavita/config             ports:                 - "500...

Firefly III

Docker & Compose Docker Compose

Docker Compose version: '3.3' services: app: image: fireflyiii/core:latest hostname: app container_name: firefly_iii_core restart: always volumes: - firefly_iii_upload:/var/www/html/storage/upload env_file: .env ...

Note Mark

Docker & Compose Docker Compose

https://github.com/enchant97/note-mark version: "3" volumes: data: services: backend: image: ghcr.io/enchant97/note-mark-backend:0.7.0 restart: unless-stopped volumes: - data:/data environment: # !!! REPLACE The...

Watchtower

Docker & Compose Docker Compose

https://containrrr.dev/watchtower/ version: "3" services: watchtower: image: containrrr/watchtower volumes: - /var/run/docker.sock:/var/run/docker.sock

Memos

Docker & Compose Docker Compose

https://github.com/usememos/memos version: "3.0" services: memos: image: neosmemo/memos:latest container_name: memos volumes: - ~/.memos/:/var/opt/memos ports: - 5230:5230

Why you should self host

Articles

Why should you? The main reason for self-hosting is the freedom. I can pick and choose what kind of services I want and how I want to use them without some company telling me what features I need or don't need. There are tons of different applications I can u...

Awesome-Selfhosted

Articles

If you are not familiar with awesome-selfhosted, it's a large and every growing list of free web applications and network services that can be self hosted. I recently noticed that they now have a website with a search feature, which is way easier to navigate ...

Tools

IT-Tools Collection of handy online tools for developers, with great UX. PrivateBin PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted and decrypted in the browser using 256bit AES...

Basic Docker Commands

Docker & Compose Docker

Show the current version of docker that you are running: docker -version [OPTIONS] Pull an image from a repository: docker pull [OPTIONS] NAME[: TAG|@DIGEST] Create a container based on the specified image: docker run [OPTIONS] IMAGE [COMMAND] [ARG...] L...

Shelves navigation link

BookStack Hide certain features/items

Place the following in your "Settings > Custom HTML Head Content" box. <style>     header a[href$="/shelves"] {         display: none;     } </style> This removes the "Shelves" link in the top navigation bar. The same code can be used for the books link ...

Tags link

BookStack Hide certain features/items

Place the following in your "Settings > Custom HTML Head Content" box. <style> body a[href$="/tags"] { display: none; } </style> This removes the "Tags" link from the right column.

Book titles

BookStack Hide certain features/items

Place the following in your "Settings > Custom HTML Head Content" box. <style> .text-limit-lines-2 { display: none; } </style> You can see this in action on this website since I place the book titles on the cover image.

Book icon over the cover image

BookStack Hide certain features/items

Place the following in your "Settings > Custom HTML Head Content" box. <style> .content-wrap .svg-icon[data-icon="book"] { display: none; } </style> .content-wrap on the center column and the actual content so that it doesn't remove your...