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

230 total results found

Readarr

Guacamole in Docker

Prometheus / Grafana Dashboard

After you've created the prometheus.yml file and have deployed the docker-compose, the rest of the steps are as follows: - Select DataSource on home page. Select Prometheus. - Search for: "node exporter grafana dashboards" on Google - Look for results on ...

Authelia for NGINX Proxy Manager

NextCloud on CasaOS

Nextcloud is the most deployed on-premises file share and collaboration platform. Access & collaborate across your devices. https://nextcloud.com/

Flame Dashboard on CasaOS

Flame is self-hosted startpage for your server. Easily manage your apps and bookmarks with built-in editors. https://github.com/pawelmalak/flame

CasaOS Installation - Start Here

Community-based open source software focused on delivering simple home cloud experience around Docker ecosystem.

Setting Up Samba Shares

This is a modified version of what PiMyLifeUp originally wrote here: https://pimylifeup.com/raspberry-pi-samba/

NGINX Proxy Manager On CasaOS

Raspberry Pi

Here are some Raspberry Pi scrips that might helpful

LinkAce

Fail2Ban

Fail2ban scans log files (e.g. /var/log/apache/error_log) and bans IPs that show the malicious signs -- too many password failures, seeking for exploits, etc. Generally Fail2Ban is then used to update firewall rules to reject the IP addresses for a specified a...

Test Book!

Test book description

Aura 15

Manscaped

ZimaBoard

Linode Stacks

BitWarden / VaultWarden

Alternative implementation of the Bitwarden server API written in Rust and compatible with upstream Bitwarden clients*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal. https://hub.docker.com/r/vaultwa...

VaultWarden

VaultWarden w/ Nginx Proxy Manager on Linode

Affiliate Links

Affiliate Links

Services PrivadoVPN: https://dbte.ch/privadovpn Digital Ocean: https://dbte.ch/do Bunny CDN: https://dbte.ch/bunnycdn Private Internet Access (PIA) VPN: https://dbte.ch/piavpn Amazon: https://dbte.ch/amazonaffiliate   Hardware TinyPilot KVM: https:...

Docker-compose.yml

Minecraft Bedrock Server

Source: https://hub.docker.com/r/itzg/minecraft-bedrock-server version: '3.3' services: minecraft-bedrock-server: container_name: mc-server environment: - EULA=TRUE - SERVER_NAME=My Server - GAMEMODE=survival #opti...

Installation Instructions and References

Kasm Workspaces - Ep. 1 - Installing Ka...

Resource Links Kasm Workspaces Installation: https://www.kasmweb.com/docs/latest/index.html Kasm Workspaces Download: https://kasmweb.com/downloads.html System Requirements: https://www.kasmweb.com/docs/latest/install/system_requirements.html Creating ...

Increase File Size Uploads with .htaccess

NextCloud

Log in to Portainer Go to your list of containers Find your NextCloud container Click the >_ (Exec Console) Run the following commands: apt update apt upgrade apt install nano nano .htaccess Once you're editing .htaccess, copy and paste the follow...

Docker-Compose.yml

SuiteCRM

SuiteCRM Overview SuiteCRM is an open source Customer Relationship Management (CRM) software solution that provides a 360-degree view of your customers and business. Making it easy for your Sales, Marketing and Customer Service departments to discover key in...

Docker CLI Install

YouTubeDL

docker run -d --name youtube-dl -e MY_ID=dbtech -e MY_PW=password -v /srv/dev-disk-by-label-Files/YouTube:/downfolder -p 9999:8080 modenaf360/youtube-dl-nas Remember that you will want to change the volume (-v) path and the server-side port (9999) to fit y...

Docker-Compose Install

YouTubeDL

--- version: "2" services: airsonic: image: modenaf360/youtube-dl-nas container_name: youtube-dl environment: - MY_ID=dbtech - MY_PW=password volumes: - /srv/dev-disk-by-label-Files/YouTube:/downfolder ...

Docker-Compose.yml

Homechart

version: "3" volumes: postgres: {} services: homechart: depends_on: - postgres environment: HOMECHART_POSTGRESQL_HOSTNAME: postgres HOMECHART_POSTGRESQL_PASSWORD: postgres HOMECHART_POSTGRESQL_USERNAME: postgre...

Docker Compose

Snippet Box

version: '3.3' services: snippet-box: container_name: snippetbox ports: - '5000:5000' volumes: - '/srv/config/snippetbox2:/app/data' #map to wherever you want to map image: pawelmalak/snippet-...

CLI

Snippet Box

sudo docker run -d --name snippetbox -p 5100:5000 -v /srv/config/snippetbox:/app/data pawelmalak/snippet-box map -v /srv/config/snippetbox to whever you want/need

Docker Compose

Flame Dashboard

NOTE: This versions does NOT integrate with the Docker Socket and will not automatically show Docker Containers. Please use this docker-compose to do that. version: '2.1' services: flame: image: pawelmalak/flame:2.0.0 container_name: flame ...

My Custom CSS

Flame Dashboard

Here's the code I used for my setup. Feel free to use and modify this for your setup. @media (min-width: 0px) { .WeatherWidget { visibility: visible; } body { background: url(uploads/cool-4k-wallpaper-10.jpg); background-size: cov...

Docker Compose Alt.

Snippet Box

version: 2 volumes: snippetbox: services: snippet-box: container_name: snippetbox ports: - 5000:5000 volumes: - snippetbox:/app/data image: pawelmalak/snippet-box

Update Portainer Community Edition

Update Portainer

  Stop and remove your existing Portainer instance. This will not affect your other Docker containers. sudo docker stop portainer && sudo docker rm portainer Pull the latest Portainer-CE image. docker pull portainer/portainer-ce:latest Deploy the new Port...

Docker Compose

Home Assistant

--- version: "2.1" volumes: homeassistant: services: homeassistant: image: homeassistant/home-assistant network_mode: "host" container_name: homeassistant volumes: - homeassistant:/config environment: - TZ=Am...

Integrate with Docker

Flame Dashboard

version: '2.1' services: flame: image: pawelmalak/flame:latest container_name: flamedashboard volumes: - /volume1/Configs/FireDashboard:/app/data #update the path as necessary - /var/run/docker.sock:/var/run/docker.sock #don'...

Docker Compose

Readarr

--- version: "2.1" volumes: readarrconf: readarrbooks: readarrclient: services: readarr: image: linuxserver/readarr:nightly container_name: readarr environment: - PUID=1026 - PGID=100 - TZ=America/Denver ...

Docker Compose

Guacamole in Docker

--- version: "2.1" volumes: guacamoleconf: services: guacamole: image: oznu/guacamole container_name: guacamole volumes: - guacamoleconf:/config ports: - 8585:8080 #edit 8585 as necessary for your setup restart...

Raspberry Pi 4 Docker Compose

NextCloud

version: '2' volumes: nextcloud: db: services: db: image: yobasystems/alpine-mariadb:latest restart: always command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW --innodb-file-per-table=1 --skip-innodb-read-only-comp...

Docker Compose

Prometheus / Grafana Dashboard

version: '3.3' services: node-exporter: network_mode: host pid: host volumes: - '/:/host:ro,rslave' image: 'quay.io/prometheus/node-exporter:latest' prometheus: container_name: prometheus...