Advanced Search
Search Results
129 total results found
Full Installation
Docker-Compose version: "3" services: shlink: image: shlinkio/shlink:stable restart: always container_name: shlink-backend environment: - TZ="America/Denver" - DEFAULT_DOMAIN=192.168.1.66:8987 #no http/https. no trailin...
ChangeDetection.io with Browser Agent Support
In this video we'll look at how to set up a ChangeDetection.io Docker container as well as a browser agent so we can render pages that require Javascript. GitHub Repo:https://github.com/dgtlmoon/changedetection.io LinuxServer.io ChangeDetection Container:htt...
CloudFlare Tunnels Docker-Compose
Here is a docker-compose to deploy CloudFlare tunnels: version: "3.9" services: tunnel: container_name: cloudflared-tunnel image: cloudflare/cloudflared restart: unless-stopped command: tunnel run environment: - TUNNEL_TOKE...
CloudFlare Appfile for CasaOS
Recently I've received multiple requests to make a video showing how to get CloudFlare tunnels configured to work with CasaOS. So here is where I'm storing the appfile to import a CloudFlare app into CasaOS. Download the cloudflare_tunnels.json file.
Flarum Installation Process on Linode
Here are the commands I used to get Flarum installed on Linode. After your Linode VPS is set up, head over to the Domains link in the left menu and set up your new domain/sub-domain and be sure to attach it to attach the domain to your Linode VPS as shown in ...
Docker-Compose
version: '3' services: db: image: postgres:15 volumes: - joplindb:/var/lib/postgresql/data ports: - "5432:5432" restart: unless-stopped environment: - POSTGRES_PASSWORD...
Quick Deploy Docker Compose
version: '3.3' services: community: ports: - '8080:80' environment: - OPENPROJECT_SECRET_KEY_BASE=RaNd0mStR1NgOfcHaRaCt3rS - 'OPENPROJECT_HOST__NAME=yourdomain.com' - OPENPROJECT_HTTPS=true restart: unless-stopped...
Proxmox + NetData for Better Insights and Notifications
Install curl https://get.netdata.cloud/kickstart.sh > /tmp/netdata-kickstart.sh && sh /tmp/netdata-kickstart.sh Notifications cd /etc/netdata nano ./health_alarm_notify.conf Scroll down to Discord section Edit to look like this: # enable/disable sendi...
VPN Setup for CasaOS
In this video we're going to take a look at how to run the traffic of Docker containers through a VPN container for better online security and anonymity. I’ve made a video like this in the past, but it was done in Portainer and Dockge, but the process of doin...