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

129 total results found

Docker-Compose.yml

HumHub

version: '2' volumes: HumHubConfig: HumHubUploads: HubHumModules: services: humhub: image: mriedmann/humhub:1.6.2 links: - db:db ports: - 8484:80 volumes: - HumHubConfig:/var/www/localhost/htdocs/prote...

Docker-Compose.yml

Matomo

version: '2.1' volumes: Matomo: Matomodb: services: matomo: image: matomo restart: always ports: - 8384:80 environment: - MATOMO_DATABASE_HOST=db - MATOMO_DATABASE_TABLES_PREFIX=mat_ - MATOMO_DAT...

Docker-Compose.yml

OpenProject

--- version: 2 volumes: OPConfig: OPAssets: services: openproject: image: openproject/community:11 container_name: openproject ports: - 7070:80 environment: - PUID=998 - PGID=100 - SECRET_KEY_BASE...

Notes

OpenProject

# use this command in a linux ssh to generate a secret for the environmental variable:# head /dev/urandom | tr -dc A-Za-z0-9 | head -c 32 ; echo ''

Docker-Compose.yml

Transmission w/ OpenVPN

version: 2 services: transmission-openvpn: volumes: - /srv/dev-disk-by-label-Files/Torrents:/data environment: - OPENVPN_PROVIDER=PIA - OPENVPN_CONFIG=France - OPENVPN_USERNAME=usernam...

OpenVPN Providers List

Transmission w/ OpenVPN

https://www.vpnranks.com/best-vpn/openvpn/

Docker-Compose.yml

AdGuard Home

--- version: "2" services: adguardhome: image: adguard/adguardhome container_name: adguardhome ports: - 53:53/tcp - 53:53/udp - 67:67/udp - 68:68/tcp - 68:68/udp - 853:853/tcp - 3000:3000/tcp...

Docker-Compose.yml

Scrutiny

--- version: "2.1" services: scrutiny: image: linuxserver/scrutiny container_name: scrutiny privileged: true environment: - PUID=998 - PGID=100 - TZ=America/Denver - SCRUTINY_API_ENDPOINT=http://localhost:80...

Notes

Scrutiny

Run this command in Container Console to update data: scrutiny-collector-metrics run

Docker-Compose.yml

Whoogle

--- version: "2" services: whoogle: image: benbusby/whoogle-search:latest container_name: whoogle ports: - 5000:5000 restart: unless-stopped

Docker-Compose.yml

Taisun

--- version: "2" services: taisun: image: linuxserver/taisun container_name: taisun network_mode: bridge volumes: - /var/run/docker.sock:/var/run/docker.sock ports: - 3000:3000 restart: unless-stopped

Docker-Compose.yml

Wiki.js

--- version: "2.1" services: wikijs: image: linuxserver/wikijs container_name: wikijs environment: - PUID=998 - PGID=100 - TZ=America/Denver volumes: - /srv/WikiJS/config:/config - /srv/WikiJS/data:/d...

Docker Compose

LanCache

version: '3.3' services: lancache-dns: restart: unless-stopped container_name: lancache-dns ports: - 53:53/udp environment: - USE_GENERIC_CACHE=true - LANCACHE_IP=192.168.1.183 ...

DNS (Port 53) Error Fix

LanCache

Edit /etc/systemd/resolved.conf and change the Cache and DNSStubListener lines to no.  Should look like this when you're done: # This file is part of systemd. # # systemd is free software; you can redistribute it and/or modify it # under the terms of t...

Test Operation

LanCache

Testing your cache Now you’ve configured your dns, started that stack and are ready to test things are operating. Here’s some very basic diagnostics and tests we would suggest to run to see if things are working. Check your dns is being intercepted Ru...

Mass Rename Files

Mass Rename Files

In Powershell or Windows Terminal $i = 0 Get-ChildItem "*.jpg" | foreach-object {Rename-Item $_ "$($i.ToString('D2')).jpg"; $i++}

Kasm Resource Links

Kasm Containerized Apps and Desktops in...

Kasm Resource Links https://kasmweb.com https://www.youtube.com/channel/UCgpv4MLH8diVlIiakCBu8eQ https://www.youtube.com/watch?v=qlMe-xhCt9w https://kasmweb.com/docs/latest/guide/custom_images.html?highlight=docker#add-edit-images https://hub.docker.com...

KasmWeb Cli

Kasm Containerized Apps and Desktops in...

sudo docker run --rm -it --shm-size=512m -p 6901:6901 -e VNC_PW=password kasmweb/image:tag Change 'image:tag' to the appropriate KasmWeb Image. Also change the 6901:6901 as necessary (6902:6901 for example) The container is now accessible via a browser : htt...

KasmWeb Docker-Compose.yml Container Template (DB Tech Custom)

Kasm Containerized Apps and Desktops in...

version: '3.3' services: firefox: ports: - '6911:6901' #change 6901 as necessary. eg. '6901:6901', '6902:6901', '6903:6901' environment: - VNC_PW=password #change as desired shm_size: '512m' #change per your needs. eg. '512...

Self-Hosted Kasm Workspaces

Kasm Containerized Apps and Desktops in...

Downloads page: https://kasmweb.com/downloads.htmlInstall docs: https://www.kasmweb.com/docs/latest/index.htmlAnd a video that covers the install as well: https://www.youtube.com/watch?v=QV6CcV9eNNs One of the advantages of using the workspaces app instead of...